Forum Discussion
BartVW
Helper I
1 year agoEnhanced refresh api status 202 OK but dataset is not refreshing
I'm calling the enhanced refresh API with this simple body { "retryCount": 3 } I get a 202 Accepted response (in Postman), but the data set is not refreshing. As you can see in below...
- 1 year ago
Yes, "automatic" will check if there is anything to refresh. If the service decides that nothing has changed it will not refresh the partition. You can override that with "full".
lbendlin
Super User
1 year agoIt's just a request, not a refresh. Your request may be accepted but still not be implemented. You can use the requestid to inquire the status.
Enhanced refresh with the Power BI REST API - Power BI | Microsoft Learn
BartVW
Helper I
1 year agoThanks @lbendlin
This is the request status I get. I don't really see anything that tells me why it is not working. Would you have any idea?
{
"startTime": "2024-11-26T09:34:21.513",
"endTime": "2024-11-26T09:34:30.433",
"type": "Automatic",
"commitMode": "Transactional",
"status": "Completed",
"extendedStatus": "Completed",
"currentRefreshType": "Automatic",
"numberOfAttempts": 0,
"objects": [
{
"table": "DateTableTemplate_4db2717a-c750-4e65-aa7e-944ab850ff2f",
"partition": "DateTableTemplate_4db2717a-c750-4e65-aa7e-944ab850ff2f",
"status": "Completed"
},
{
"table": "Source data",
"partition": "Source data",
"status": "Completed"
}
],
"refreshAttempts": [
{
"attemptId": 1,
"startTime": "2024-11-26T09:34:22.5574511Z",
"endTime": "2024-11-26T09:34:30.4328433Z",
"type": 0
}
]
}