Creates a new user info field value.
Request Information
URI Parameters :
None.
Body Parameters :
db_info_data| Name | Description | Type | Additional 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
{
"id": "587ace76-fb90-47db-ae11-1da1e6a8bb5d",
"target_id": "7a677a8e-7b86-4856-9ab2-aa8b8c402295",
"db_info_field_id": "3c822b39-a207-4c7c-9a64-6942be93578c",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:35:01.660186+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>3c822b39-a207-4c7c-9a64-6942be93578c</db_info_field_id> <id>587ace76-fb90-47db-ae11-1da1e6a8bb5d</id> <modified_dateutc>2026-09-16T08:35:01.660Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>7a677a8e-7b86-4856-9ab2-aa8b8c402295</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the created user info field value.
db_info_data| Name | Description | Type | Additional 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
{
"id": "d9db9a4e-5f9e-452d-b956-eab8c8838372",
"target_id": "43cd1f29-71b8-4e5d-8df2-3cd145597e05",
"db_info_field_id": "47de59a4-ad79-4fb1-91e1-e4e18bf3870b",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:35:01.660186+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>47de59a4-ad79-4fb1-91e1-e4e18bf3870b</db_info_field_id> <id>d9db9a4e-5f9e-452d-b956-eab8c8838372</id> <modified_dateutc>2026-09-16T08:35:01.660Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>43cd1f29-71b8-4e5d-8df2-3cd145597e05</target_id> <value>sample string 4</value> </db_info_data>