migration_jobs
The migration_jobs method retrieves a list of current and historical migration
jobs submitted by the requester.
Syntax
{
<credentials object>
}
Response fields for migration_jobs
The following fields may be returned when the migration_jobs method is
submitted:
Field name | Obligation | Description/Value |
---|---|---|
error | Returned if success = false | A text string that explains the error. |
error_number | Returned if success = false | A number that represents the error. |
jobs | Returned if success = true | Information about the jobs for the specified user. Allowed values are: date — The date that the job was submitted, in UNIX Epoch time. job — The ID of the job. |
success | Always returned | Indicates whether the requested change was successful or not. Allowed values are true and false. |
Examples for migration_jobs
Request
{
"credentials": {
"user": "[email protected]",
"password": "sw0rdf1sh"
}
}
Response
{
"success": true,
"jobs": [
{
"date": 1326229443,
"job": "1326229437638"
},
]
}
Updated less than a minute ago