Export - Retrieves the status of export-related details for a report
Authorizations
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Body
Class for export status.
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.
exportIdstring · min: 1Required
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
200
Success: Returns the status of export-related details of an existing report.
401
Unauthorized: Invalid credentials or missing/invalid authentication token.
404
Not Found: The report was not found, the URL is invalid, or the resource has been deleted.
500
Internal Server Error: An unexpected error occurred or a server timeout.
post
POST /exportStatus HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 69
{
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"exportId": "text"
}
{
"id": "text",
"createdDateTime": "2025-06-27T11:09:04.063Z",
"lastActionDateTime": "2025-06-27T11:09:04.063Z",
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"reportName": "text",
"status": "text",
"percentComplete": 1,
"resourceLocation": "text",
"resourceFileExtension": "text",
"expirationTime": "2025-06-27T11:09:04.063Z"
}
Last updated