Edit Semantic Model - Deletes an existing relationship between two tables in a Power BI dataset with
Deletes an existing relationship between two tables in a Power BI dataset within a specific workspace.
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
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Body
Model for deleting relationships between tables.
fromTableNamestringRequired
A public property of type string that specifies the name of the 'from' table in the relationship to delete.
fromColumnNamestringRequired
A public property of type string that specifies the name of the 'from' column in the relationship to delete.
toTableNamestringRequired
A public property of type string that specifies the name of the 'to' table in the relationship to delete.
toColumnNamestringRequired
A public property of type string that specifies the name of the 'to' column in the relationship to delete.
Responses
200
Success: The relationship was deleted successfully.
400
Bad Request: The server cannot process the request due to a client error, such as invalid table/column details or the relationship not existing.
401
Unauthorized: The request lacks valid authentication credentials for the target resource.
404
Not Found: The specified relationship or table was not found.
500
Internal Server Error: An unexpected server error occurred while processing the request.
delete
DELETE /workspace/{workspaceId}/dataset/{datasetId}/relationship HTTP/1.1
Host: admin-embedfastdev-app.azurewebsites.net
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"fromTableName": "text",
"fromColumnName": "text",
"toTableName": "text",
"toColumnName": "text"
}
No content
PreviousEdit Semantic Model - Updates a relationship between two tables in a Power BI dataset within a speciNextEdit Semantic Model - Validates if the user has the required permissions to modify a Power BI datase
Last updated