Creates or updates a work order 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": "d576c6c0-a09b-4814-9133-53b9e4012e15",
"target_id": "e8658ffc-6931-4494-b5b7-0f78c99e0dd2",
"db_info_field_id": "e3edb6c2-fcfd-42f4-b309-84d80c452410",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T11:04:27.3621329+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>e3edb6c2-fcfd-42f4-b309-84d80c452410</db_info_field_id> <id>d576c6c0-a09b-4814-9133-53b9e4012e15</id> <modified_dateutc>2026-09-16T11:04:27.362Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>e8658ffc-6931-4494-b5b7-0f78c99e0dd2</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult containing the saved work order 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": "d19ab24f-96ae-439e-90cd-ee8a0de9aac4",
"target_id": "4fa2ec5c-1df0-410f-bd66-4a5f7c81b7b0",
"db_info_field_id": "7486d8f7-0ce0-4370-8cac-f2fa9f29f75e",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T11:04:27.3621329+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>7486d8f7-0ce0-4370-8cac-f2fa9f29f75e</db_info_field_id> <id>d19ab24f-96ae-439e-90cd-ee8a0de9aac4</id> <modified_dateutc>2026-09-16T11:04:27.362Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>4fa2ec5c-1df0-410f-bd66-4a5f7c81b7b0</target_id> <value>sample string 4</value> </db_info_data>