Report - Saves a Power BI report by ID into the application

Saves the Power BI report identified by its unique ID into the application.

post
Authorizations
Path parameters
reportIdstring · uuidRequired

Expects Id of an existing report

Query parameters
versionstringOptional

The requested API version

Default: 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.
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"
  ]
}

Last updated