Generate DAX - Adds a calculated table in a Power BI dataset within a specific workspace
Authorizations
Path parameters
workspaceIdstringRequired
Enter ID of the workspace for which the calculated table is added.
datasetIdstringRequired
Enter ID of an existing dataset
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Body
Model for creating or updating calculated tables.
calculatedTableNamestringRequired
A public property of type string that specifies the name of the calculated table.
calculatedTableExpressionstringRequired
A public property of type string that contains the DAX expression for the calculated table.
Responses
200
Success: The calculated table was created successfully.
application/json
400
Bad Request: The server cannot process the request due to a client error, such as malformed syntax or invalid data.
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}/addTable HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"calculatedTableName": "text",
"calculatedTableExpression": "text"
}
{
"message": "text"
}
PreviousGenerate DAX - Generates a DAX expression for a calculated table based on the provided promptNextGenerate DAX - Updates a calculated table in a Power BI dataset within a specific workspace
Last updated