GET
/
data
/
export
/
job
/
{jobId}
curl --request GET \
  --url https://api.uplift.ai/v1/data/export/job/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "<string>",
  "status": "RUNNING",
  "errorMessage": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string
required

The unique identifier for the job to be retrieved.

Response

200
application/json

Successful retrieval of job details.

The response is of type object.