Skip to main content
GET
/
reports
/
exports
/
{exportId}
Get a current-user data export report
curl --request GET \
  --url https://api.leadping.ai/reports/exports/{exportId}
{
  "id": "<string>",
  "requestedAt": "2023-11-07T05:31:56Z",
  "startedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z",
  "failedAt": "2023-11-07T05:31:56Z",
  "expiresAt": "2023-11-07T05:31:56Z",
  "message": "<string>",
  "downloadUrl": "<string>",
  "fileName": "<string>",
  "contentType": "<string>",
  "sizeBytes": "<string>",
  "downloadCount": "<string>",
  "maxDownloadCount": "<string>",
  "files": [
    {
      "category": "<string>",
      "fileName": "<string>",
      "contentType": "<string>",
      "rowCount": "<string>"
    }
  ]
}

Path Parameters

exportId
string
required

Response

200 - application/json

OK

id
string
status
enum<string>

Defines the supported user data export statuses values.

Available options:
Pending,
Processing,
Completed,
Failed,
Expired
requestedAt
string<date-time>
startedAt
string<date-time> | null
completedAt
string<date-time> | null
failedAt
string<date-time> | null
expiresAt
string<date-time>
message
string | null
downloadUrl
string | null
fileName
string | null
contentType
string | null
sizeBytes
string<int64> | null
Pattern: ^-?(?:0|[1-9]\d*)$
downloadCount
string<int32>
Pattern: ^-?(?:0|[1-9]\d*)$
maxDownloadCount
string<int32>
Pattern: ^-?(?:0|[1-9]\d*)$
files
object[]