Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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.