Skip to main content
GET
/
api
/
v1
/
organizations
/
{organization_id}
/
jobs
/
{job_id}
/
exports
List Job Exports
curl --request GET \
  --url https://api.example.com/api/v1/organizations/{organization_id}/jobs/{job_id}/exports \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "job_id": "<string>",
      "status": "queued",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers -- Authorization: Bearer <access_token>

Path Parameters

organization_id
string
required
job_id
string
required

Query Parameters

offset
integer<int64>
default:0

The offset of objects to skip before starting to collect the result set.

Required range: x >= 0
limit
integer<int64>
default:10

A limit on the number of objects to be returned. Limit can range between 1 and 1000, and the default is 10.

Required range: 1 <= x <= 1000
pagination
boolean
default:true

A flag to toggle the pagination feature. When set to false, all results are returned in a single response. The default is true.

Response

Successful response.

data
JobExport · object[] | null
required
total
integer<int64>
required

The total number of job exports.