Creates or updates a company 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": "cdf69683-ae94-4a22-81a2-5f3e046fc98d",
  "target_id": "a421ef30-0445-4dcf-80a8-36e8a851e6b4",
  "db_info_field_id": "1cd1d71e-2b7e-4666-89d6-0db6249349ee",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:36:28.240505+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>1cd1d71e-2b7e-4666-89d6-0db6249349ee</db_info_field_id>
  <id>cdf69683-ae94-4a22-81a2-5f3e046fc98d</id>
  <modified_dateutc>2026-09-16T08:36:28.240Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>a421ef30-0445-4dcf-80a8-36e8a851e6b4</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult containing the saved company 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": "b8eb8e6a-9500-45c2-bdb1-7db6696313ad",
  "target_id": "1c0309a5-59f1-4a55-a19d-98fa5634c9c5",
  "db_info_field_id": "126e1ed0-acb8-4186-8d24-e7f1b8ca61f6",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:36:28.240505+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>126e1ed0-acb8-4186-8d24-e7f1b8ca61f6</db_info_field_id>
  <id>b8eb8e6a-9500-45c2-bdb1-7db6696313ad</id>
  <modified_dateutc>2026-09-16T08:36:28.240Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>1c0309a5-59f1-4a55-a19d-98fa5634c9c5</target_id>
  <value>sample string 4</value>
</db_info_data>