Retrieves the results collected for a diagnostic query, modified since the given date.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| sys_debugdata_query_id |
The diagnostic query id. |
globally unique identifier |
Required |
| modified_dateutc |
Only return results modified after this UTC date/time. |
string |
Required |
| top |
Maximum number of results to return. |
integer |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of results.
sys_debugdata_result| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| sys_debugdata_query_id |
Foreign key of the query () this result was produced for. |
globally unique identifier | |
| result |
Query output returned by the device, as text (e.g. serialized rows or an error message). |
string | |
| is_error |
Indicates whether executing the query on the device failed (in which case holds the error detail). |
boolean | |
| modified_dateutc |
UTC date and time the result was reported, as text. |
string |
Response Formats
application/json, text/json
Sample:
{
"modified_dateutc": "sample string 1",
"id": "781ecfa3-e09f-4dc7-9b35-9de57c2d06f2",
"sys_debugdata_query_id": "a7851bd2-c889-494b-ad9f-2dca508df01b",
"result": "sample string 3",
"is_error": true
}
application/xml, text/xml
Sample:
<sys_debugdata_result xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>781ecfa3-e09f-4dc7-9b35-9de57c2d06f2</id> <is_error>true</is_error> <modified_dateutc>sample string 1</modified_dateutc> <result>sample string 3</result> <sys_debugdata_query_id>a7851bd2-c889-494b-ad9f-2dca508df01b</sys_debugdata_query_id> </sys_debugdata_result>