Skip to main content
GET
/
data
/
export
/
job
/
{jobId}
Retrieve Job Information
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

Successful retrieval of job details.

jobId
string

The unique identifier for the job.

status
enum<string>

The current status of the job.

Available options:
RUNNING,
COMPLETED,
FAILED,
CANCELED
errorMessage
string

Detailed error message if the job failed.

createdAt
string<date-time>

The time at which the job was created.

completedAt
string<date-time>

The time at which the job was completed, if applicable.