Export - Retrieves the status of export-related details for a report

Retrieves the status of export-related details for a report.

post

/exportStatus

Authorizations
Query parameters
versionstring

The requested API version

Header parameters
embedfast-user-idstring

Optional User Id

Body
reportIdstring uuidrequired

A public property of type Guid (a unique identifier) that has both a getter and a setter method, which allows for getting and setting the value of the ReportId property.

exportIdstringrequired

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the ExportId property.

Responses
curl -L \
  --request POST \
  --url '/exportStatus' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json' \
  --data '{"reportId":"123e4567-e89b-12d3-a456-426614174000","exportId":"text"}'
{
  "id": "text",
  "createdDateTime": "2025-02-16T23:18:23.258Z",
  "lastActionDateTime": "2025-02-16T23:18:23.258Z",
  "reportId": "123e4567-e89b-12d3-a456-426614174000",
  "reportName": "text",
  "status": "text",
  "percentComplete": 1,
  "resourceLocation": "text",
  "resourceFileExtension": "text",
  "expirationTime": "2025-02-16T23:18:23.258Z"
}

Last updated