GET
/
v1
/
exports
curl --request GET \
  --url https://api.withflex.com/v1/exports \
  --header 'Authorization: Bearer <token>'
{
  "export": [
    {
      "export_id": "<string>",
      "description": "<string>",
      "type": "product",
      "status": "created",
      "created_at": "<string>",
      "started_at": "<string>",
      "completed_at": "<string>",
      "metadata": {},
      "filters": {
        "payment": {
          "limit": 123,
          "status": "canceled",
          "starting_after": "<string>",
          "ending_before": "<string>",
          "customer": "<string>"
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

starting_after
string
ending_before
string
limit
integer | null
offset
integer | null

Response

200
application/json

The response is of type object.