Skip to main content

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": [
]
}
keyValueDescription
countintegerThe number of jobs returned in this response
offsetintegerDefaults to 0. The offset for job records
limitintegerDefaults to 30. The number of jobs to return
totalintegerThe total number of jobs initiated by the caller
jobsJSONThe list of job JSON as specified in [Job Status - Get]

Request

Responses

Successful operation