Skip to main content
GET
/
v1
/
exports
List exports
curl --request GET \
  --url https://api.zavu.dev/v1/exports \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "exp_abc123",
      "status": "pending",
      "dataTypes": [
        "messages"
      ],
      "expiresAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "dateFrom": "2023-11-07T05:31:56Z",
      "dateTo": "2023-11-07T05:31:56Z",
      "downloadUrl": "<string>",
      "fileSize": 123,
      "errorMessage": "<string>",
      "completedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

status
enum<string>

Status of a data export job.

Available options:
pending,
processing,
completed,
failed
limit
integer
default:50
Required range: x <= 100
cursor
string

Response

List of exports.

items
object[]
required
nextCursor
string | null