n/a
n/a
JSON Responses are single-member objects which have a property name based on the type of result. The Success result will look like:
{"Success" : {
"ReportName" : {
"Title" : "Report Title",
"Metric" : "Metric being reported on",
"ReportOptions" : [options],
"Doc" : "Report documentation",
"Uri" : "Relative URI to access the report" }
...
}
}
The Error result will be a flat array of objects, which have keys for the message name and explanatory text.
{
"Error" : [
{ "Name" : string, "Message" : string },
{ "Name" : string, "Message" : string },
...
]
}
n/a