Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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.