Creates or updates a task 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": "90d58df5-12f7-4fc4-a848-49384b0b35eb",
"target_id": "a65f3079-b78c-4ba7-aae6-4ed478736d86",
"db_info_field_id": "d07e07cb-345d-4ae1-9d1c-c11d20692d05",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:11:57.7147469+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>d07e07cb-345d-4ae1-9d1c-c11d20692d05</db_info_field_id> <id>90d58df5-12f7-4fc4-a848-49384b0b35eb</id> <modified_dateutc>2026-09-16T10:11:57.714Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>a65f3079-b78c-4ba7-aae6-4ed478736d86</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the saved task 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": "e8c4af8d-e4d0-4352-bb6a-535dc5813df9",
"target_id": "7adaeb08-6f40-4966-bd5b-b88f07d52a61",
"db_info_field_id": "dcfa8bf9-cd8f-4b08-a730-11c0d790f4bd",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:11:57.7147469+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>dcfa8bf9-cd8f-4b08-a730-11c0d790f4bd</db_info_field_id> <id>e8c4af8d-e4d0-4352-bb6a-535dc5813df9</id> <modified_dateutc>2026-09-16T10:11:57.714Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>7adaeb08-6f40-4966-bd5b-b88f07d52a61</target_id> <value>sample string 4</value> </db_info_data>