Edit Semantic Model - Adds a calculated column in a specified table within a Power BI dataset
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
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Body
Model for creating or updating calculated columns.
tableNamestringRequired
A public property of type string that specifies the table where the calculated column will be created.
calculatedColumnNamestringRequired
A public property of type string that specifies the name of the calculated column.
daxExpressionstringRequired
A public property of type string that contains the DAX expression for the calculated column.
descriptionstring | nullableOptional
A public property of type string that contains a description of the calculated column.
Responses
200
Success: The calculated column was added or updated successfully.
400
Bad Request: The server cannot process the request due to a client error, such as malformed syntax or invalid table/column details.
401
Unauthorized: The request lacks valid authentication credentials for the target resource.
500
Internal Server Error: An unexpected server error occurred while processing the request.
post
POST /workspace/{workspaceId}/dataset/{datasetId}/column HTTP/1.1
Host: admin-embedfastdev-app.azurewebsites.net
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 94
{
"tableName": "text",
"calculatedColumnName": "text",
"daxExpression": "text",
"description": "text"
}
No content
PreviousEdit Semantic Model - Generates a DAX expression for a calculated column based on the provided prompNextEdit Semantic Model - Updates a calculated column in a specified table within a Power BI dataset
Last updated