Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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.