Retrieves all db Reports

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

db_report
NameDescriptionTypeAdditional 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": "721b3652-4f7c-4da8-ab21-e5dbae413299",
  "db_report_type_id": "fb06cdaf-01e8-4de5-bd84-9706bbd7d739",
  "user_id": "5afc4957-5bd2-4887-8316-a9e3272946e1",
  "company_id": "d2dd3652-67d2-4ee6-9ccc-a9e6c9c91f9e",
  "db_table_id": "0c0a7341-bcba-4d61-b6f6-d52cdf3a5ea9",
  "id_in_table": "e35fd1ca-8396-40be-9ab0-4280d7ea92b1",
  "date_start": "2026-01-11T21:00:43.7326922+00:00",
  "modified_dateutc": "2026-01-11T21:00:43.7326922+00:00",
  "is_completed": true
}

application/xml, text/xml

Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>d2dd3652-67d2-4ee6-9ccc-a9e6c9c91f9e</company_id>
  <date_start>2026-01-11T21:00:43.732Z</date_start>
  <db_report_type_id>fb06cdaf-01e8-4de5-bd84-9706bbd7d739</db_report_type_id>
  <db_table_id>0c0a7341-bcba-4d61-b6f6-d52cdf3a5ea9</db_table_id>
  <id>721b3652-4f7c-4da8-ab21-e5dbae413299</id>
  <id_in_table>e35fd1ca-8396-40be-9ab0-4280d7ea92b1</id_in_table>
  <is_completed>true</is_completed>
  <modified_dateutc>2026-01-11T21:00:43.732Z</modified_dateutc>
  <user_id>5afc4957-5bd2-4887-8316-a9e3272946e1</user_id>
</db_report>