Export - Retrieves the status of export-related details for a report
The requested API version
1.0
Optional User Id
Class for export status request parameters.
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.
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.
Gets or sets the unique identifier for the paginated asset. Required in case of Paginated visual export (type 2) MAQ.BIHub.API.Model.ExportMethod
Success: Returns the status of export-related details of an existing report.
Unauthorized: Invalid credentials or missing/invalid authentication token.
Not Found: The report was not found, the URL is invalid, or the resource has been deleted.
Internal Server Error: An unexpected error occurred or a server timeout.
POST /exportStatus HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 127
{
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"exportId": "text",
"paginatedAssetId": "123e4567-e89b-12d3-a456-426614174000"
}
{
"id": "text",
"createdDateTime": "2025-10-12T06:05:31.915Z",
"lastActionDateTime": "2025-10-12T06:05:31.915Z",
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"reportName": "text",
"status": "text",
"percentComplete": 1,
"resourceLocation": "text",
"resourceFileExtension": "text",
"expirationTime": "2025-10-12T06:05:31.915Z"
}
Last updated