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: 
  | 
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 7 months ago
