List jobs
render_list_jobsList jobs for a Render service, with optional filters for status, creation time, start time, or finish time.
Instructions
List jobs. List jobs for the provided service that match the provided filters. If no filters are provided, all jobs for the service are returned. Calls GET /services/{serviceId}/jobs on the Render Public API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | The maximum number of items to return. For details, see [Pagination](https://api-docs.render.com/reference/pagination). | |
| cursor | No | The position in the result list to start from when fetching paginated results. For details, see [Pagination](https://api-docs.render.com/reference/pagination). | |
| status | No | Filter for the status of the job (`pending`, `running`, `succeeded`, `failed`, or `canceled`) | |
| serviceId | Yes | The ID of the service | |
| createdAfter | No | Filter for jobs created after a certain time (specified as an ISO 8601 timestamp) | |
| startedAfter | No | Filter for jobs started after a certain time (specified as an ISO 8601 timestamp) | |
| createdBefore | No | Filter for jobs created before a certain time (specified as an ISO 8601 timestamp) | |
| finishedAfter | No | Filter for jobs finished after a certain time (specified as an ISO 8601 timestamp) | |
| startedBefore | No | Filter for jobs started before a certain time (specified as an ISO 8601 timestamp) | |
| finishedBefore | No | Filter for jobs finished before a certain time (specified as an ISO 8601 timestamp) |