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
Exported PDF from PowerBI to not have any indents/borders
Currently, using the "Export to PDF" option in PowerBI results in two consistently buggy results: A white border/indent is generated, increasing the size of the page from 8.5x11 to 9x11.5 Sometime...EliShalev3 hours agoNew MemberNew7Views0likes0CommentsAdding a Container for Logical Grouping of Activities in Data Pipelines
Dear Team, I would like to propose a feature enhancement for Data Pipelines in Microsoft Fabric that allows the logical grouping of activities into a container. This container would serve to: Im...lukas_karlovsky4 hours agoNew MemberPlanned874Views15likes5CommentsSupport Native SQL LIKE / NOT LIKE Wildcard Filtering Across Power BI Reports
Description Currently, Power BI does not provide a native way for report consumers to perform dynamic SQL-style wildcard filtering using patterns such as LIKE '____' - Above return all values wit...Seeralan5 hours agoNew MemberNew7Views0likes0Comments