GET
/
data
/
export
/
job
/
{jobId}
/
results
Retrieve Job Results
curl --request GET \
  --url https://api.uplift.ai/v1/data/export/job/{jobId}/results \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "<string>",
  "rowCount": 123,
  "schema": [
    {
      "name": "<string>",
      "type": {
        "name": "<string>"
      }
    }
  ],
  "rows": [
    {}
  ]
}

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 whose results need to be retrieved.

Query Parameters

offset
integer
default:0

Number of rows to skip for pagination. Default is 0.

Read more about Retrieving Data in Batches for usage examples.

limit
integer
default:100

Number of rows to retrieve. Maximum valid value is 500. Default is 100. Use with the offset query parameter to paginate and retrieve more than the first 500 results.

Read more about Retrieving Data in Batches for usage examples.

Response

Successful retrieval of job results.

jobId
string

The unique identifier for the job.

rowCount
integer

The number of rows the job returned.

schema
object[]

The schema definitions for the data the job returned.

rows
object[]

The data retrieved as a result of the completed job.

The individual result records of the job.