Retrieves the db report with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "f8054d77-e3a4-4372-a851-bb8fe736003a",
  "db_report_type_id": "d1765bf7-ab6a-440e-9c49-9faf948e316f",
  "user_id": "3fc79fcf-ef7f-4d09-a674-e2f64d83c36a",
  "company_id": "1c8406ba-acf6-4540-bacb-773e8bcc166d",
  "db_table_id": "8803b404-1349-4daf-9e8f-71a1b436357e",
  "id_in_table": "5a26a3b8-df24-47c6-b2b4-31905ffa2c7c",
  "date_start": "2026-03-07T14:53:00.80006+00:00",
  "modified_dateutc": "2026-03-07T14:53:00.80006+00:00",
  "is_completed": true
}

application/xml, text/xml

Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>1c8406ba-acf6-4540-bacb-773e8bcc166d</company_id>
  <date_start>2026-03-07T14:53:00.800Z</date_start>
  <db_report_type_id>d1765bf7-ab6a-440e-9c49-9faf948e316f</db_report_type_id>
  <db_table_id>8803b404-1349-4daf-9e8f-71a1b436357e</db_table_id>
  <id>f8054d77-e3a4-4372-a851-bb8fe736003a</id>
  <id_in_table>5a26a3b8-df24-47c6-b2b4-31905ffa2c7c</id_in_table>
  <is_completed>true</is_completed>
  <modified_dateutc>2026-03-07T14:53:00.800Z</modified_dateutc>
  <user_id>3fc79fcf-ef7f-4d09-a674-e2f64d83c36a</user_id>
</db_report>