Edit Semantic Model - Deletes an existing relationship between two tables in a Power BI dataset within a specific workspace
Deletes an existing relationship between two tables in a Power BI dataset within a specific workspace.
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 relationship between tables in a Power BI dataset.
The name of the table on the "To" side of the relationship.
The name of the column on the "To" side of the relationship.
The name of the table on the "From" side of the relationship.
The name of the column on the "From" side of the relationship.
Success: The relationship was deleted successfully.
No content
Bad Request: The server cannot process the request due to a client error, such as invalid table/column details or the relationship not existing.
Unauthorized: The request lacks valid authentication credentials for the target resource.
Not Found: The specified relationship or table was not found.
Internal Server Error: An unexpected server error occurred while processing the request.
DELETE /workspace/{workspaceId}/dataset/{datasetId}/relationship HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"toTableName": "text",
"toColumnName": "text",
"fromTableName": "text",
"fromColumnName": "text"
}
No content
Last updated