Export - Initiates the export process of a 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.
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 JWT
Content-Type: application/json
Accept: */*
Content-Length: 331
{
"reportId": "28b4b970-b0f6-4dac-b070-e1e17747c8c9",
"exportType": "pdf",
"isPaginated": true,
"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-09-01T04:25:53.598Z",
"lastActionDateTime": "2025-09-01T04:25:53.598Z",
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"reportName": "text",
"status": 0,
"percentComplete": 1,
"resourceLocation": "text",
"resourceFileExtension": "text",
"expirationTime": "2025-09-01T04:25:53.598Z"
}
Last updated