Skip to main content
https://.thoughtindustries.com

Jobs

List jobs

List jobs

GEThttps://example.thoughtindustries.com/incoming/v2/jobs/:id

Returns the details of a background job by its unique identifier.

Example request

curl "https://example.thoughtindustries.com/incoming/v2/jobs/:id" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
iduuidYespathThe unique identifier of the background job to retrieve.

Example response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "description": "string",
  "errorMessage": "string",
  "status": "complete"
}

Response fields

FieldTypeDescription
iduuidUnique identifier of the background job.
descriptionstringHuman-readable summary of what the job does.
errorMessagestringError details if the job failed; empty or absent when the job succeeded.
statusBackgroundJobStatusCurrent execution state of the job (e.g., complete).