Even Copilot thinks it should be available:
Updating a specific row directly in a Power BI dataset using the API is not supported. However, you can achieve this by using the Push Dataset method, which involves deleting the existing row and then adding the updated row back into the dataset.
Steps to Update a Contact in Power BI Using API
1. Get Access Token
Ensure you have an access token to authenticate your API requests.
2. Delete the Existing Row
Use the Power BI REST API to delete the existing row with the specific contact ID.
Example API Call to Delete a Row
DELETE https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/tables/Contacts/rows
Content-Type: application/json
Authorization: Bearer {access_token}
{
"rows": [
{
"id": 1234123
}
]
}
Which is just as 1ame... Shame on you!
Administrator
on 21 Dec 2016 11:03:57
Asked the team to look into this
Recent ideas
OneLake Catalog full-text and content search
Why is it not possible to search OneLake by item description or even content? So I was thinking about how a user can find a table if they don't know in which lakehouse it is located? Why can't you se...TePe17 hours agoHelper IVPlanned1.1KViews21likes5Comments