This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.