Obsolete. Retrieves the results collected for a diagnostic query, modified since the given date.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
sysDebugDataQueryID

The diagnostic query id.

globally unique identifier

Required

modifiedDate

Only return results modified after this date.

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
NameDescriptionTypeAdditional 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": "41283d6a-7a7c-49bc-b0b0-0650dba90c04",
  "sys_debugdata_query_id": "966b8ba5-cfef-4c9b-8991-c3ad6821c21c",
  "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>41283d6a-7a7c-49bc-b0b0-0650dba90c04</id>
  <is_error>true</is_error>
  <modified_dateutc>sample string 1</modified_dateutc>
  <result>sample string 3</result>
  <sys_debugdata_query_id>966b8ba5-cfef-4c9b-8991-c3ad6821c21c</sys_debugdata_query_id>
</sys_debugdata_result>