Retrieves all db Reports
Request Information
URI Parameters :
None.
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": "4e6c9446-5f64-48ac-b3d2-c95da82cbd27",
"db_report_type_id": "1925d88a-159d-41f9-907f-c72e96f9dbd6",
"user_id": "9f98f6f1-48fe-459f-947d-8dd064b089ea",
"company_id": "0befecbf-09b5-41c9-8fe1-14f7fe78a380",
"db_table_id": "b5b20755-875d-4acc-b3dd-a9a0445d712e",
"id_in_table": "530d0c27-d351-4ff6-9d73-54a95d75af1a",
"date_start": "2026-03-07T14:50:09.0426185+00:00",
"modified_dateutc": "2026-03-07T14:50:09.0426185+00:00",
"is_completed": true
}
application/xml, text/xml
Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>0befecbf-09b5-41c9-8fe1-14f7fe78a380</company_id> <date_start>2026-03-07T14:50:09.042Z</date_start> <db_report_type_id>1925d88a-159d-41f9-907f-c72e96f9dbd6</db_report_type_id> <db_table_id>b5b20755-875d-4acc-b3dd-a9a0445d712e</db_table_id> <id>4e6c9446-5f64-48ac-b3d2-c95da82cbd27</id> <id_in_table>530d0c27-d351-4ff6-9d73-54a95d75af1a</id_in_table> <is_completed>true</is_completed> <modified_dateutc>2026-03-07T14:50:09.042Z</modified_dateutc> <user_id>9f98f6f1-48fe-459f-947d-8dd064b089ea</user_id> </db_report>