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

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

put
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

Represents a model for defining a calculated table in a Power BI dataset.

calculatedTableExpressionstring | nullableOptional

The DAX expression that defines the calculated table.

calculatedTableNamestring | nullableOptional

The name of the calculated table to be created.

Responses
200

Success: The calculated table was created or updated successfully.

No content

put
PUT /workspace/{workspaceId}/dataset/{datasetId}/table HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 65

{
  "calculatedTableExpression": "text",
  "calculatedTableName": "text"
}

No content

Last updated