Obsolete. Retrieves uncompleted debug-data bundles for the current device.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of uncompleted sys_debugdata bundles.
sys_debugdata| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| device_id |
Foreign key of the device this debug session targets. |
globally unique identifier | |
| description |
Free-text description of what this debug session is investigating. |
string | |
| dateutc_added |
Readonly system field: UTC date and time the debug session was created. |
date | |
| is_done |
Indicates whether the device has finished processing all queries for this debug session. |
boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "dffe88b1-a05a-4e96-972e-458f0fac0376",
"device_id": "0d12ba91-89f5-4494-a9a9-4f88f3a6a82c",
"description": "sample string 3",
"dateutc_added": "2026-09-16T10:10:44.181078+00:00",
"is_done": true
}
application/xml, text/xml
Sample:
<sys_debugdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <dateutc_added>2026-09-16T10:10:44.181Z</dateutc_added> <description>sample string 3</description> <device_id>0d12ba91-89f5-4494-a9a9-4f88f3a6a82c</device_id> <id>dffe88b1-a05a-4e96-972e-458f0fac0376</id> <is_done>true</is_done> </sys_debugdata>