GetAsynchronousTasks

Gets a list of asynchronous tasks for the logged in user

Tasks can be removed from this list by the RemoveAsynchronousTask request or by downloading the result if it generated file

Authentication Methods


  1. AMS/Partner username/password
Input Parameter Type Description
Token* String Security Token
Output Parameter Type Description
Success Boolean True if success, false if failed

*=required

CURL EXAMPLE
curl -v 'https://secure.nomadesk.com/ctrller/api.php?Task=GetAsynchronousTasks&Token=57318f28-8b28-41a2-ac14-49dec0a8029a'
RESPONSE
<Response>
    <Status>1</Status>
    <Message>Success</Message>
    <Tasks>
        <Task>
            <ID>2af354d5-4982-66ed-05e5-10fa7b2df8d3</ID>
            <Name>ExportAccountsAsCSV</Name>
            <Downloaded>false</Downloaded>
            <CreatedOn>1467616491</CreatedOn>
            <Status>Done</Status>
        </Task>
        <Task>
            <ID>0pn354d5-4982-81ed-05e5-10fa7b2df8d3</ID>
            <Name>ExportVaultssAsCSV</Name>
            <Downloaded>false</Downloaded>
            <CreatedOn>1467616491</CreatedOn>
            <Status>Done</Status>
        </Task>        
    </Tasks>
</Response>