Import API
Get a list of all jobs
Lists can be filtered by the job state
get/jobs
Query parameters
statestring[]
A comma-separated list of job states to filter on. Eg created,submitted
limitinteger
Maximum number of items that will be returned. A value of zero will return zero items. The default value is 20, and the maximum limit allowed is 1000
offsetinteger
Starting index of the items array that will be returned. By default it is zero, meaning that the returned items will start from the beginning.
Response
A list of jobs has been returned
Example response
{
"items": [
{
"last_updated": "2016-07-17T08:38:25.316+0000"
}
]
}