Skip to main content
GET
/
v1
/
exports
List
curl --request GET \
  --url https://{defaultHost}/v1/exports \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/exports"
  },
  "data": [
    {
      "id": "629b4b9c-b317-482e-83b7-82e68835c4ea",
      "object": "export_customer",
      "email": "person@example.com",
      "file_url": null,
      "record_count": 0,
      "status": "pending",
      "type": "customers",
      "created_at": 1771429865,
      "updated_at": 1771429865
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.