Skip to main content
GET
/
api
/
v1
/
analytics
/
export
/
{id}
Get export status
curl --request GET \
  --url https://api.engagefabric.com/api/v1/analytics/export/{id}
{
  "exportId": "<string>",
  "status": "processing",
  "format": "csv",
  "expiresAt": "<string>",
  "createdAt": "<string>",
  "completedAt": "<string>",
  "downloadUrl": "<string>",
  "fileSize": 123,
  "recordCount": 123,
  "error": "<string>"
}

Path Parameters

id
string
required

Export job ID

Response

200 - application/json

Export status

exportId
string
required

Export job ID

status
enum<string>
required

Current export status

Available options:
processing,
completed,
failed
format
enum<string>
required

Export format

Available options:
csv,
json
expiresAt
string
required

Export expiration time

createdAt
string
required

Export creation time

completedAt
string
required

Export completion time

downloadUrl
string

Download URL (available when status is COMPLETED)

fileSize
number

Export file size in bytes

recordCount
number

Number of records exported

error
string

Error message (if status is FAILED)