Creates or updates a 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": "4f35464d-a3dd-42e4-80f5-7ee4fdedf94f",
"target_id": "70eb371d-a385-4a36-888a-021e3871856b",
"db_info_field_id": "4a6953bc-167a-4458-a599-d77c49e5dc00",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:34:51.0345331+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>4a6953bc-167a-4458-a599-d77c49e5dc00</db_info_field_id> <id>4f35464d-a3dd-42e4-80f5-7ee4fdedf94f</id> <modified_dateutc>2026-09-16T08:34:51.034Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>70eb371d-a385-4a36-888a-021e3871856b</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the saved 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": "7eb78dfe-9fad-4c43-86d4-016f128d0101",
"target_id": "3a66d9ed-ef76-4220-ba94-e06b57255d73",
"db_info_field_id": "60c160fd-abd3-45a4-99f3-c7ee7025ab29",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T08:34:51.0345331+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>60c160fd-abd3-45a4-99f3-c7ee7025ab29</db_info_field_id> <id>7eb78dfe-9fad-4c43-86d4-016f128d0101</id> <modified_dateutc>2026-09-16T08:34:51.034Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>3a66d9ed-ef76-4220-ba94-e06b57255d73</target_id> <value>sample string 4</value> </db_info_data>