Report - Saves a Power BI report by ID into the application
Authorizations
Path parameters
reportIdstring · uuidRequired
Expects Id of an existing report
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Body
Class for saving the Report Asset.
timestampstring · date-timeOptional
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.
isCreatedbooleanOptional
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.
Responses
201
Success: The Power BI report was successfully saved into the application.
404
Not Found: The specified report was not found, the URL is invalid, or the resource has been deleted.
409
Conflict: There was a problem saving the Power BI report due to a conflict with existing data.
500
Internal Server Error: An unexpected server error occurred while saving the report.
post
POST /reports/{reportId}/save HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"timestamp": "2025-06-27T11:06:55.912Z",
"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",
"isGlobalReport": true,
"canView": true,
"canCreate": true,
"canEdit": true,
"canExport": true,
"createdOn": "2025-06-27T11:06:55.912Z",
"modifiedOn": "2025-06-27T11:06:55.912Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"modifiedBy": "123e4567-e89b-12d3-a456-426614174000",
"reportParameter": [
"text"
]
}
PreviousReport - Deletes a Power BI report by IDNextReport - Retrieves a list of shared or paginated reports for the user
Last updated