Get Jobs
GET/api/v1/jobs
Jobs API provides status of all user initiated jobs in FileSpin.
/jobs API returns the list of jobs initiated by caller. Use offset and limit query parameters to paginate through results.
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] |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error