How do I use GetStatus with the Vid.ly PRO API?

The Vid.ly PRO API can be used to obtain status information on jobs, by BatchID or MediaShortlink:

<?xml version="1.0"?>
<query>
    <action>GetStatus</action>
    <userid>[UserID</userid>
    <userkey>[User_Key]</userkey>
    <notify>[User_Email]</notify>
    <BatchID>[BatchID_or_MediaShortlink]</BatchID>
</query>

Response:

<?xml version="1.0"?>
<Response>
    <Message>[Success]</Message>
    <MessageCode>[MessageCode]</MessageCode>
    <Success>
        <Task>
            <UserID>[UserID]</UserID>
            <MediaShortLink>[MediaShortLink]</MediaShortLink>
            <SourceFile>[SourceFile]</SourceFile>
            <BatchID>[BatchID]</BatchID>
            <Status>[Status]</Status>
            <Created>[LinkCreatedDate]</Created>
            <Updated>[LinkUpdatedDate]</Updated>
            <UserEmail>[UserEmail]</UserEmail>
        </Task>
        <Task>
        </Task>
    </Success>
    <Errors> <!-- if file is not in Success section, it must be in this one -->
        <Error>  <!-- Relates to the appropriate SourceFile in the request list -->
            <SourceFile>[SourceFileK]</SourceFile>
            <ErrorCode>[ErrorCodeID]</ErrorCode>
            <Description>[ErrorDescriptionK]</Description>
            <Suggestion>[ErrorSuggestionK]</Suggestion>
        </Error>
    </Errors>
</Response>
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading...

edchelp