Retrieves the db report with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The db report id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the db report, or 404 Not Found if it doesn't exist.
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": "28a88dbd-51d2-4bfa-ab2a-2b9f2af43328",
"db_report_type_id": "61939930-24c8-449a-aa25-cc3199a5007a",
"user_id": "ccee3a59-6ed1-4e2c-877c-88e79d152623",
"company_id": "8fa00e71-1012-487f-bfb5-340cdff48e4c",
"db_table_id": "0426e09a-9696-430b-b085-b28e262dc5cb",
"id_in_table": "c7547801-dad0-472b-a463-5fc58fa564e7",
"date_start": "2026-09-16T10:15:13.7927349+00:00",
"modified_dateutc": "2026-09-16T10:15:13.7927349+00:00",
"is_completed": true
}
application/xml, text/xml
Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>8fa00e71-1012-487f-bfb5-340cdff48e4c</company_id> <date_start>2026-09-16T10:15:13.792Z</date_start> <db_report_type_id>61939930-24c8-449a-aa25-cc3199a5007a</db_report_type_id> <db_table_id>0426e09a-9696-430b-b085-b28e262dc5cb</db_table_id> <id>28a88dbd-51d2-4bfa-ab2a-2b9f2af43328</id> <id_in_table>c7547801-dad0-472b-a463-5fc58fa564e7</id_in_table> <is_completed>true</is_completed> <modified_dateutc>2026-09-16T10:15:13.792Z</modified_dateutc> <user_id>ccee3a59-6ed1-4e2c-877c-88e79d152623</user_id> </db_report>