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": "cad3a7e3-cde7-4549-a600-3de99a11d0f0",
"db_report_type_id": "2620485c-2d96-49e9-89ec-331aa855ec9d",
"user_id": "a16a882e-bdb9-4c5e-99c9-d0f34aebf90f",
"company_id": "67be3a5f-4a8a-4acb-947d-3d5401bf6cb8",
"db_table_id": "0fd0623d-8358-4573-8eee-0003d5b6137b",
"id_in_table": "026a3cbe-ac18-4d60-a003-289d549f4d47",
"date_start": "2026-06-16T21:17:33.8554157+00:00",
"modified_dateutc": "2026-06-16T21:17:33.8554157+00:00",
"is_completed": true
}
application/xml, text/xml
Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>67be3a5f-4a8a-4acb-947d-3d5401bf6cb8</company_id> <date_start>2026-06-16T21:17:33.855Z</date_start> <db_report_type_id>2620485c-2d96-49e9-89ec-331aa855ec9d</db_report_type_id> <db_table_id>0fd0623d-8358-4573-8eee-0003d5b6137b</db_table_id> <id>cad3a7e3-cde7-4549-a600-3de99a11d0f0</id> <id_in_table>026a3cbe-ac18-4d60-a003-289d549f4d47</id_in_table> <is_completed>true</is_completed> <modified_dateutc>2026-06-16T21:17:33.855Z</modified_dateutc> <user_id>a16a882e-bdb9-4c5e-99c9-d0f34aebf90f</user_id> </db_report>