Updates the db report with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
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 |
Request Formats :
application/json, text/json
Sample:
{
"id": "8950157f-ad63-4be6-b993-692d533077f8",
"db_report_type_id": "c0e2d3cb-39c5-4b88-9723-6b799072b0fe",
"user_id": "aa38983f-c95a-49f3-878a-fd7904833432",
"company_id": "7d7e99f3-cb66-47bd-863f-960d412cb2ba",
"db_table_id": "f02f86a6-32e9-401d-bccb-27066fba6b6c",
"id_in_table": "ff4884b8-6348-4564-9b05-3d124f73aabc",
"date_start": "2026-01-11T23:51:04.3277895+00:00",
"modified_dateutc": "2026-01-11T23:51:04.3277895+00:00",
"is_completed": true
}
application/xml, text/xml
Sample:
<db_report xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>7d7e99f3-cb66-47bd-863f-960d412cb2ba</company_id> <date_start>2026-01-11T23:51:04.327Z</date_start> <db_report_type_id>c0e2d3cb-39c5-4b88-9723-6b799072b0fe</db_report_type_id> <db_table_id>f02f86a6-32e9-401d-bccb-27066fba6b6c</db_table_id> <id>8950157f-ad63-4be6-b993-692d533077f8</id> <id_in_table>ff4884b8-6348-4564-9b05-3d124f73aabc</id_in_table> <is_completed>true</is_completed> <modified_dateutc>2026-01-11T23:51:04.327Z</modified_dateutc> <user_id>aa38983f-c95a-49f3-878a-fd7904833432</user_id> </db_report>
Response Information
Resource Description :
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.