Creates a new project 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": "0c9057bc-b7e5-4fb7-9f51-a4a8d69b0c62",
"target_id": "2cba53d6-6df8-4f7c-8b5a-5fd35a3963f1",
"db_info_field_id": "7f32d7fe-4263-4818-94b2-a8b116f1d2d1",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:34:11.0230847+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>7f32d7fe-4263-4818-94b2-a8b116f1d2d1</db_info_field_id> <id>0c9057bc-b7e5-4fb7-9f51-a4a8d69b0c62</id> <modified_dateutc>2026-09-16T08:34:11.023Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>2cba53d6-6df8-4f7c-8b5a-5fd35a3963f1</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the created project 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": "36dff90c-9f9f-48cc-9d45-f266833efe76",
"target_id": "134436b1-3ccd-44b8-99b1-965dc22ed2bf",
"db_info_field_id": "31eec774-f509-4d69-9159-9795cacbba84",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:34:11.0230847+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>31eec774-f509-4d69-9159-9795cacbba84</db_info_field_id> <id>36dff90c-9f9f-48cc-9d45-f266833efe76</id> <modified_dateutc>2026-09-16T08:34:11.023Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>134436b1-3ccd-44b8-99b1-965dc22ed2bf</target_id> <value>sample string 4</value> </db_info_data>