Retrieves the db report with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
db_report| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_report_type_id |
db report type id |
globally unique identifier | |
| user_id |
Created user id |
globally unique identifier | |
| company_id |
The Final company that own this report (If WO Report, the company that owns the installation/project) |
globally unique identifier | |
| db_table_id |
Table ID which db report linked to. |
globally unique identifier | |
| id_in_table |
Item id of the table which db report linked to |
globally unique identifier | |
| date_start |
Date start |
date | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| is_completed |
is_completed flag |
boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "44e0e28f-c0d3-4f11-915e-cabbc1ad29ea",
"db_report_type_id": "f5d5cc45-e8a6-45a4-8fd8-c0fe53fefb26",
"user_id": "17294912-dfbb-42f5-bdf6-0cff9b3c21df",
"company_id": "af036d78-cfc9-4835-9b17-2ffd855e49ec",
"db_table_id": "1ede2cee-ae96-43a7-8f19-639400f2f0e8",
"id_in_table": "dadf1981-ccee-4982-973f-611224557f59",
"date_start": "2026-06-16T21:21:19.3912859+00:00",
"modified_dateutc": "2026-06-16T21:21:19.3912859+00:00",
"is_completed": true
}
application/xml, text/xml
Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>af036d78-cfc9-4835-9b17-2ffd855e49ec</company_id> <date_start>2026-06-16T21:21:19.391Z</date_start> <db_report_type_id>f5d5cc45-e8a6-45a4-8fd8-c0fe53fefb26</db_report_type_id> <db_table_id>1ede2cee-ae96-43a7-8f19-639400f2f0e8</db_table_id> <id>44e0e28f-c0d3-4f11-915e-cabbc1ad29ea</id> <id_in_table>dadf1981-ccee-4982-973f-611224557f59</id_in_table> <is_completed>true</is_completed> <modified_dateutc>2026-06-16T21:21:19.391Z</modified_dateutc> <user_id>17294912-dfbb-42f5-bdf6-0cff9b3c21df</user_id> </db_report>