Creates or updates a user 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": "534b210c-eed8-4a4c-82d9-625bb2f8d6c0",
  "target_id": "7a8ebe79-1c67-413c-aa2d-2c40b49a6f40",
  "db_info_field_id": "6627657e-9d67-4814-8805-8a7b0f3d5276",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T10:13:28.1341803+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>6627657e-9d67-4814-8805-8a7b0f3d5276</db_info_field_id>
  <id>534b210c-eed8-4a4c-82d9-625bb2f8d6c0</id>
  <modified_dateutc>2026-09-16T10:13:28.134Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>7a8ebe79-1c67-413c-aa2d-2c40b49a6f40</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult containing the saved user 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": "3f3454f1-2337-4f43-85ec-046c3e7d0d48",
  "target_id": "03d4ea73-dd17-45ce-a957-6b4d465a5d5c",
  "db_info_field_id": "376a736a-e547-4111-a71f-54b94115302b",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T10:13:28.1341803+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>376a736a-e547-4111-a71f-54b94115302b</db_info_field_id>
  <id>3f3454f1-2337-4f43-85ec-046c3e7d0d48</id>
  <modified_dateutc>2026-09-16T10:13:28.134Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>03d4ea73-dd17-45ce-a957-6b4d465a5d5c</target_id>
  <value>sample string 4</value>
</db_info_data>