Creates a new company 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": "8fc77999-1509-4cdb-8e7f-fdaf0b0fc38d",
"target_id": "8394d47d-de7c-403c-abab-f31820092bed",
"db_info_field_id": "76287144-c8ad-4ba1-8b13-8ec9f3a0bf33",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:16:12.4845171+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>76287144-c8ad-4ba1-8b13-8ec9f3a0bf33</db_info_field_id> <id>8fc77999-1509-4cdb-8e7f-fdaf0b0fc38d</id> <modified_dateutc>2026-09-16T10:16:12.484Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>8394d47d-de7c-403c-abab-f31820092bed</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the created company 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": "7e6e0750-c6a6-45bf-af51-a9a9aa6d8e4d",
"target_id": "be63506d-af84-4bef-8a1a-a0f0612c3193",
"db_info_field_id": "429a4e62-91c1-4f58-86ed-3272f4dea61c",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:16:12.4845171+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>429a4e62-91c1-4f58-86ed-3272f4dea61c</db_info_field_id> <id>7e6e0750-c6a6-45bf-af51-a9a9aa6d8e4d</id> <modified_dateutc>2026-09-16T10:16:12.484Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>be63506d-af84-4bef-8a1a-a0f0612c3193</target_id> <value>sample string 4</value> </db_info_data>