Retrieves the debug-data bundles not yet completed for the given device.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
device_id

The device id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of uncompleted sys_debugdata bundles.

sys_debugdata
NameDescriptionTypeAdditional 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": "720a5ba6-0f8b-455a-8e64-c221b50b042d",
  "device_id": "1993d379-cbe7-492c-bb6d-906cf3cb1c82",
  "description": "sample string 3",
  "dateutc_added": "2026-09-16T10:11:36.2010768+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:36.201Z</dateutc_added>
  <description>sample string 3</description>
  <device_id>1993d379-cbe7-492c-bb6d-906cf3cb1c82</device_id>
  <id>720a5ba6-0f8b-455a-8e64-c221b50b042d</id>
  <is_done>true</is_done>
</sys_debugdata>