Creates or updates a db_report info field value.

Request Information

URI Parameters :

None.

Body Parameters :

db_info_data
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
target_id

Foreign key of the object using his Odyssee Guid Primary Key

globally unique identifier

Optionally required : target_id or target_code must be provided

db_info_field_id

Foreign key of the custom info field this value was entered for.

globally unique identifier

Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided

value

The value of this info fields for this targetId. Follow the formating rules (API / HELP / Info Fields)

string
sys_logical_delete

Logical delete

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Request Formats :

application/json, text/json

Sample:
{
  "id": "34998052-7d9e-4297-a60e-3f1f7e0b71ed",
  "target_id": "ea73063c-c100-48cf-bda7-a413f120745d",
  "db_info_field_id": "1e86e514-9854-4f47-a675-327c19163f3e",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T11:02:41.0574416+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>1e86e514-9854-4f47-a675-327c19163f3e</db_info_field_id>
  <id>34998052-7d9e-4297-a60e-3f1f7e0b71ed</id>
  <modified_dateutc>2026-09-16T11:02:41.057Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>ea73063c-c100-48cf-bda7-a413f120745d</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult containing the saved db_report info field value.

db_info_data
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
target_id

Foreign key of the object using his Odyssee Guid Primary Key

globally unique identifier

Optionally required : target_id or target_code must be provided

db_info_field_id

Foreign key of the custom info field this value was entered for.

globally unique identifier

Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided

value

The value of this info fields for this targetId. Follow the formating rules (API / HELP / Info Fields)

string
sys_logical_delete

Logical delete

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "6082e140-e99a-4daf-a9d2-5bd0203ee45a",
  "target_id": "00b86a98-a301-4ecb-bd2d-5d400250ae75",
  "db_info_field_id": "67063397-7670-4e05-9a4e-e9eb0bc6e937",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T11:02:41.0574416+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>67063397-7670-4e05-9a4e-e9eb0bc6e937</db_info_field_id>
  <id>6082e140-e99a-4daf-a9d2-5bd0203ee45a</id>
  <modified_dateutc>2026-09-16T11:02:41.057Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>00b86a98-a301-4ecb-bd2d-5d400250ae75</target_id>
  <value>sample string 4</value>
</db_info_data>