Edit Semantic Model - Adds a calculated table in a Power BI dataset within a specific workspace

Adds a calculated table in a Power BI dataset within a specific workspace.

post
Authorizations
Path parameters
workspaceIdstringRequired

Enter ID of the workspace for which the theme details are requested.

datasetIdstringRequired

Enter ID of an existing dataset

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body

Model for creating or updating calculated tables.

calculatedTableNamestringRequired

A public property of type string that specifies the name of the calculated table.

daxExpressionstringRequired

A public property of type string that contains the DAX expression for the calculated table.

descriptionstring | nullableOptional

A public property of type string that contains a description of the calculated table.

Responses
200
Success: The calculated table was created or updated successfully.
post
POST /workspace/{workspaceId}/dataset/{datasetId}/table HTTP/1.1
Host: admin-embedfastdev-app.azurewebsites.net
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "calculatedTableName": "text",
  "daxExpression": "text",
  "description": "text"
}

No content

Last updated