Edit Semantic Model - Adds a calculated column in a specified table within a Power BI dataset
Enter ID of the workspace for which the theme details are requested.
Enter ID of an existing dataset
The requested API version
1.0
Optional User Id
Represents a model for defining a calculated column in a Power BI dataset.
The name of the table in which the calculated column will be created.
The DAX expression that defines the calculated column.
The name of the calculated column to be created.
Success: The calculated column was added or updated successfully.
No content
Bad Request: The server cannot process the request due to a client error, such as malformed syntax or invalid table/column details.
Unauthorized: The request lacks valid authentication credentials for the target resource.
Internal Server Error: An unexpected server error occurred while processing the request.
POST /workspace/{workspaceId}/dataset/{datasetId}/column HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 86
{
"tableName": "text",
"calculatedColumnExpression": "text",
"calculatedColumnName": "text"
}
No content
Last updated