Add/Update multiple db_info_data

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

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": "1b98bf96-9f1d-4321-9c2b-ba2a0a35d41a",
  "target_id": "9c261077-f0b3-4e80-afb3-19a8afff18f1",
  "db_info_field_id": "75424c69-0c77-4250-bd31-5403f69a5bf6",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-06-16T21:17:38.0193473+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>75424c69-0c77-4250-bd31-5403f69a5bf6</db_info_field_id>
  <id>1b98bf96-9f1d-4321-9c2b-ba2a0a35d41a</id>
  <modified_dateutc>2026-06-16T21:17:38.019Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>9c261077-f0b3-4e80-afb3-19a8afff18f1</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult

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

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": "5c93c654-98d7-446a-a281-710a39a9efc9",
  "target_id": "863f5e67-7b51-4a35-a4de-0d09658c1c3c",
  "db_info_field_id": "ef197ab6-a088-4aa5-9f4b-7e9199fa8ebb",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-06-16T21:17:38.0193473+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>ef197ab6-a088-4aa5-9f4b-7e9199fa8ebb</db_info_field_id>
  <id>5c93c654-98d7-446a-a281-710a39a9efc9</id>
  <modified_dateutc>2026-06-16T21:17:38.019Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>863f5e67-7b51-4a35-a4de-0d09658c1c3c</target_id>
  <value>sample string 4</value>
</db_info_data>