Creates a new 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": "af6b2b5b-d761-426e-876b-0a0fc342cfb9",
  "target_id": "189672ac-47b4-457e-ba86-64cef0a35013",
  "db_info_field_id": "a108d219-812d-4d40-a16e-0c130c33ef75",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T10:13:22.7445726+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>a108d219-812d-4d40-a16e-0c130c33ef75</db_info_field_id>
  <id>af6b2b5b-d761-426e-876b-0a0fc342cfb9</id>
  <modified_dateutc>2026-09-16T10:13:22.744Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>189672ac-47b4-457e-ba86-64cef0a35013</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult containing the created 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": "e1d78c66-a6fc-4fc6-8372-92ec5f09c8db",
  "target_id": "0d992f63-391f-436a-82d6-1078cf2bb901",
  "db_info_field_id": "2acf74f0-472b-4273-8269-c97112000c6b",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T10:13:22.7445726+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>2acf74f0-472b-4273-8269-c97112000c6b</db_info_field_id>
  <id>e1d78c66-a6fc-4fc6-8372-92ec5f09c8db</id>
  <modified_dateutc>2026-09-16T10:13:22.744Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>0d992f63-391f-436a-82d6-1078cf2bb901</target_id>
  <value>sample string 4</value>
</db_info_data>