List jobs
Lists jobs for the account. Jobs are background processes, such as replacing the filterable metadata attributes.
Query parameters
The unique key identifying the corpus with the job.
[ "my-corpus" ]
Filter by jobs created after a particular date-time.
Filter by jobs in particular states.
The maximum number of jobs to return at one time.
The opaque cursor returned in metadata.page_key of the previous response. Omit it to fetch the first page.
Headers
The platform makes a best effort to complete the request in the specified seconds, or it times out.
The platform makes a best effort to complete the request in the specified milliseconds, or it times out.
Response
List of jobs.
Example response
{
"jobs": [
{
"id": "job_1234",
"corpus_keys": [
"my-corpus"
]
}
],
"metadata": {
"page_key": "eyJvZmZzZXQiOjF9"
}
}Changes
Changed in 1 of the 13 revisions of this API.1
- ○
added the optional property
//to the response with the statusresponse-optional-property-added
- ○