Forum Discussion
Cannot do a full refresh via the API for Git deployed Semantic Models
- 1 month ago
Hi sthatte ,
Thanks for reaching out to fabric community.
In the Enhanced Refresh API, specifying "type": "full" may still apply the incremental refresh policy because applyRefreshPolicy defaults to true.
To perform a full refresh across all partitions, try the following request body:
{
"type": "full",
"applyRefreshPolicy": false,
"commitMode": "transactional"
}
Also, remove "notifyOption": "", as it should not be included in an enhanced refresh request. Setting applyRefreshPolicy to false ensures that the incremental refresh policy is not applied during the refresh operation.Refernece Documents :
https://learn.microsoft.com/en-us/rest/api/power-bi/datasets/refresh-dataset
https://learn.microsoft.com/en-us/power-bi/connect-data/asynchronous-refresh
Thanks!!
Hi sthatte ,
Thanks for reaching out to fabric community.
In the Enhanced Refresh API, specifying "type": "full" may still apply the incremental refresh policy because applyRefreshPolicy defaults to true.
To perform a full refresh across all partitions, try the following request body:
{
"type": "full",
"applyRefreshPolicy": false,
"commitMode": "transactional"
}
Also, remove "notifyOption": "", as it should not be included in an enhanced refresh request. Setting applyRefreshPolicy to false ensures that the incremental refresh policy is not applied during the refresh operation.
Refernece Documents :
https://learn.microsoft.com/en-us/rest/api/power-bi/datasets/refresh-dataset
https://learn.microsoft.com/en-us/power-bi/connect-data/asynchronous-refresh
Thanks!!