Skip to main content
GET
/
v1
/
exports
/
{exportId}
Get export
curl --request GET \
  --url https://api.zavu.dev/v1/exports/{exportId} \
  --header 'Authorization: Bearer <token>'
{
  "export": {
    "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"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

exportId
string
required

Response

Export details.

export
object
required