List jobs
GET {{baseUrl}}/services/:serviceId/jobs?cursor=Lorem amet sin&limit=20&status=pending,succeeded&createdBefore=2021-06-17T08:15:30Z&createdAfter=2021-02-17T08:15:30Z&startedBefore=2021-06-17T08:15:30Z&startedAfter=2021-02-17T08:15:30Z&finishedBefore=2021-06-17T08:15:30Z&finishedAfter=2021-02-17T08:15:30Z
https://api-docs.render.com/reference/list-job
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
cursor | string | Cursor to begin retrieving entries for this query | |
limit | number | Max number of items that can be returned | |
status | string | Filter for the status of the job (pending , running , succeeded , or failed ) | |
createdBefore | string | Filter for jobs created before a certain time (specified as an ISO 8601 timestamp) | |
createdAfter | string | Filter for jobs created after a certain time (specified as an ISO 8601 timestamp) | |
startedBefore | string | Filter for jobs started before a certain time (specified as an ISO 8601 timestamp) | |
startedAfter | string | Filter for jobs started after a certain time (specified as an ISO 8601 timestamp) | |
finishedBefore | string | Filter for jobs finished before a certain time (specified as an ISO 8601 timestamp) | |
finishedAfter | string | Filter for jobs finished after a certain time (specified as an ISO 8601 timestamp) |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
[{"job":{"id":"job-xxxxx","serviceId":"srv-xxxxx","startCommand":"echo 'hello world'","planId":"plan-srv-004","status":"succeeded","createdAt":"2021-07-15T07:20:05.777035-07:00","startedAt":"2021-07-15T07:20:05.777035-07:00","finishedAt":"2021-07-15T07:20:05.777035-07:00"},"cursor":"abc123"},{"job":{"id":"job-xxxxx","serviceId":"srv-xxxxx","startCommand":"echo 'hello world'","planId":"plan-srv-004","status":"succeeded","createdAt":"2021-07-15T07:20:05.777035-07:00","startedAt":"2021-07-15T07:20:05.777035-07:00","finishedAt":"2021-07-15T07:20:05.777035-07:00"},"cursor":"abc123"}]