Skip to main content
GET
/
v1
/
exports
List Exports
curl --request GET \
  --url https://api.withflex.com/v1/exports \
  --header 'Authorization: Bearer <token>'
{
  "export": [
    {
      "export_id": "obj_01EXAMPLE00000000000000000",
      "description": "string",
      "type": "product",
      "status": "created",
      "created_at": "2024-01-01T00:00:00Z",
      "started_at": "2024-01-01T00:00:00Z",
      "completed_at": "2024-01-01T00:00:00Z",
      "metadata": {},
      "test_mode": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access this API.

Query Parameters

starting_after
string | null

A cursor for use in pagination. starting_after is an export ID that defines your place in the list.

Example:

"obj_01EXAMPLE00000000000000000"

ending_before
string | null

A cursor for use in pagination. ending_before is an export ID that defines your place in the list.

Example:

"obj_01EXAMPLE00000000000000000"

limit
integer<int32> | null

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

Example:

10

offset
integer<int32> | null

Number of objects to skip before returning results.

Example:

0

Response

Success

export
object[]
required