Export - Initiates the export process of an existing report
The requested API version
1.0
Optional User Id
Optional User Email
Class for export file.
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 ExportType property.
A public property of type bool that has both a getter and a setter method, which allows for getting and setting the value of the paginated property.
Defines the available export methods for an asset.
Gets or sets the unique identifier for the paginated asset. Required in case of Paginated visual export (type 2) MAQ.BIHub.API.Model.ExportReportConfiguration.ExportMethod
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 BookmarkState 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 PageName 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 VisualName property.
Success: Export process successfully initiated for the report.
Bad Request: The request could not be processed due to invalid syntax or missing/incorrect parameters.
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.
Method Not Allowed: User doesn't have enough access to perform this operation.
Internal Server Error: An unexpected server error occurred during the export process.
POST /export HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 372
{
"reportId": "0588295c-09c5-4768-b5ce-f09716660064",
"exportType": "pdf",
"isPaginated": true,
"exportMethod": 0,
"paginatedAssetId": null,
"filter": "TableName/ColumnName eq 'Value' and TableName/AnotherColumn gt 10",
"bookmarkState": "string",
"pageName": "string",
"visualName": "string",
"reportParameter": [
{
"name": "Parameter1",
"value": "Value1"
},
{
"name": "Parameter2",
"value": "Value2"
}
]
}
{
"id": "text",
"createdDateTime": "2025-10-12T16:59:01.344Z",
"lastActionDateTime": "2025-10-12T16:59:01.344Z",
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"reportName": "text",
"status": 0,
"percentComplete": 1,
"resourceLocation": "text",
"resourceFileExtension": "text",
"expirationTime": "2025-10-12T16:59:01.344Z"
}
Last updated