Obsolete. Retrieves completed debug-data bundles for the given device.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| device_id |
The device id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of completed 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": "8433840b-3acb-46d9-b61d-0832d2ca5652",
"device_id": "d19ac39a-0c16-43d5-a061-3e431aa18605",
"description": "sample string 3",
"dateutc_added": "2026-09-16T08:34:50.9926045+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-16T08:34:50.992Z</dateutc_added> <description>sample string 3</description> <device_id>d19ac39a-0c16-43d5-a061-3e431aa18605</device_id> <id>8433840b-3acb-46d9-b61d-0832d2ca5652</id> <is_done>true</is_done> </sys_debugdata>