get https://{app}.{filespin}.{io}/api/v1/jobs
Jobs API provides status of all user initiated jobs in FileSpin.
/jobs
API returns the list of of a jobs initiated by caller.
RESPONSE JSON
The API call will return with a JSON response as below.
{
"count": 15,
"limit": 30,
"offset": 0,
"total": 15,
"jobs": [
]
}
key | Value | Description |
---|---|---|
count | integer | The number of jobs returned in this response |
offset | integer | Defaults to 0 . The offset for job records |
limit | integer | Defaults to 30 . The number of jobs to return |
total | integer | The total number of jobs initiated by the caller |
jobs | JSON | The list of job JSON as specified in Job Status - Get |