I created a semantic model using the 'Paste or manually enter data' option, and used this model to create a report. In my application, using the Microsoft.PowerBI.Api 5.1.0 Nuget package, calls to PowerBIClient..Admin.GetRefreshablesAsync(top: 1000, expand: "group") is throwing an exception, "Unknown RefreshType value. (Parameter 'value') Actual value was WebModeling.". Deleting that semantic model from my workspace resolved the issue, and other semantic models created from sources other than that 'Paste or manually enter data' option do not cause the issue. The relevant object from the https://api.powerbi.com/v1.0/myorg/admin/capacities/refreshables?$expand=group&$top=1000 call response is {
"value": [
{
"id": "...",
"name": "Test",
"kind": "Dataset",
"startTime": "2026-05-11T23:30:24.777Z",
"endTime": "2026-05-11T23:30:29.737Z",
"refreshCount": 1,
"refreshFailures": 0,
"averageDuration": 4.96,
"medianDuration": 4.96,
"refreshesPerDay": 1,
"lastRefresh": {
"id": ...,
"refreshType": "WebModeling",
"startTime": "2026-05-11T23:30:24.777Z",
"endTime": "2026-05-11T23:30:29.737Z",
"serviceExceptionJson": null,
"status": "Completed",
"requestId": "...",
"extendedStatus": null,
"refreshAttempts": []
},
"refreshSchedule": {
"days": [],
"times": [],
"enabled": false,
"localTimeZoneId": "UTC",
"notifyOption": "MailOnFailure"
},
"configuredBy": [
"..."
],
"group": {
"id": "...",
"name": "..."
}
}
]
} The RefreshType enum, and the related RefreshTypeExtensions serializer, in the Nuget package need to be updated to handle the WebModeling refreshType.
... View more