Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
The response for the 'Get Refresh Schedule in Group' AP call documented here specifies that the output should be a JSON response with a "value" keyword. This is consistent with all other API calls.
However, when making that request, the actual response is missing that "value" keyword.
i.e. my expected response is:
{
"@odata.context": "XXXXX",
"value": {
"days": [
"Monday"
],
"times": [
"08:30"
],
"enabled": false,
"localTimeZoneId": "Eastern Standard Time",
"notifyOption": "MailOnFailure"
}
}and instead, it's returning:
{
"@odata.context": "XXXXX",
"days": [
"Monday"
],
"times": [
"08:30"
],
"enabled": false,
"localTimeZoneId": "Eastern Standard Time",
"notifyOption": "MailOnFailure"
}This feels more like a bug in the API than something that wasn't documented properly, but either way the documentation and the response should be consistent.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.