Report - Saves a Power BI report by ID into the application
Expects Id of an existing report
The requested API version
1.0
Optional User Id
Class for saving the Report Asset.
A public property of type DateTime that has both a getter and a setter method, which allows for getting and setting the value of the Timestamp 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 IsCreated property.
Success: The Power BI report was successfully saved into the application.
Not Found: The specified report was not found, the URL is invalid, or the resource has been deleted.
Conflict: There was a problem saving the Power BI report due to a conflict with existing data.
Internal Server Error: An unexpected server error occurred while saving the report.
POST /reports/{reportId}/save HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"timestamp": "2025-09-01T08:20:58.881Z",
"isCreated": true
}
{
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"assetType": "text",
"assetName": "text",
"embedUrl": "text",
"webUrl": "text",
"datasetId": "text",
"bindedDatasetId": "text",
"reportType": "text",
"reportPages": [
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
],
"isEffectiveIdentityRolesRequired": "text",
"isEffectiveIdentityRequired": "text",
"isReportTemplate": true,
"canView": true,
"canCreate": true,
"canEdit": true,
"canExport": true,
"createdOn": "2025-09-01T08:20:58.881Z",
"modifiedOn": "2025-09-01T08:20:58.881Z",
"createdBy": "text",
"modifiedBy": "text",
"reportParameter": [
{
"columnName": "text",
"columnLabel": "text"
}
],
"folderId": "123e4567-e89b-12d3-a456-426614174000",
"description": "text"
}
Last updated