GET
/
data
/
export
/
job
/
{jobId}
/
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

200
application/json

Successful retrieval of job results.

The response is of type object.