Creates a new article 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": "06750a3d-e170-4b19-90b5-517507d8fee7",
"target_id": "4b22b55f-0517-4c3d-90c0-2292243c2795",
"db_info_field_id": "2c2e5f87-53ca-47e2-b53c-777d139b05e4",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T11:02:35.2220965+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>2c2e5f87-53ca-47e2-b53c-777d139b05e4</db_info_field_id> <id>06750a3d-e170-4b19-90b5-517507d8fee7</id> <modified_dateutc>2026-09-16T11:02:35.222Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>4b22b55f-0517-4c3d-90c0-2292243c2795</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the created article 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": "bf54125d-10d7-47cc-a17b-723d8604fe4c",
"target_id": "87ca3478-1e13-476f-9455-5ff907f4f508",
"db_info_field_id": "980cae8c-cd9c-49bc-911e-30c0f49ab355",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T11:02:35.2220965+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>980cae8c-cd9c-49bc-911e-30c0f49ab355</db_info_field_id> <id>bf54125d-10d7-47cc-a17b-723d8604fe4c</id> <modified_dateutc>2026-09-16T11:02:35.222Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>87ca3478-1e13-476f-9455-5ff907f4f508</target_id> <value>sample string 4</value> </db_info_data>