Retrieves the debug-data bundles already completed 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": "2cd1a332-ef8b-4715-815c-02b6a7fb93c1",
"device_id": "530b4ed2-3114-4730-b464-51c4be235a58",
"description": "sample string 3",
"dateutc_added": "2026-09-16T10:11:29.8770432+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:11:29.877Z</dateutc_added> <description>sample string 3</description> <device_id>530b4ed2-3114-4730-b464-51c4be235a58</device_id> <id>2cd1a332-ef8b-4715-815c-02b6a7fb93c1</id> <is_done>true</is_done> </sys_debugdata>