Edit Semantic Model - Deletes a column from a specified table within a Power BI dataset

Deletes a column from a specified table within a Power BI dataset.

delete
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 deleting a column in a Power BI dataset.

tableNamestring | nullableOptional

The name of the table in which the calculated column will be created.

columnNamestring | nullableOptional

The name of the calculated column to be created.

Responses
200

Success: The column was deleted successfully.

No content

delete
DELETE /workspace/{workspaceId}/dataset/{datasetId}/column HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "tableName": "text",
  "columnName": "text"
}

No content

Last updated