Add/Update multiple db_info_data
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 | 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": "5768d175-5233-4dbb-8181-d6a2c1449bd1",
"target_id": "4ba250b6-1d38-4c8d-aaa5-537f76512a29",
"db_info_field_id": "53411aa4-b5a4-4b82-9222-b58815ed1f06",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-01-11T21:01:43.2430848+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>53411aa4-b5a4-4b82-9222-b58815ed1f06</db_info_field_id> <id>5768d175-5233-4dbb-8181-d6a2c1449bd1</id> <modified_dateutc>2026-01-11T21:01:43.243Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>4ba250b6-1d38-4c8d-aaa5-537f76512a29</target_id> <value>sample string 4</value> </db_info_data>
Response Information
Resource Description :
IHttpActionResult
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 | 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": "e3682678-4eaa-4012-8aaf-5775e532779c",
"target_id": "68183337-5bcc-4424-a634-09e62950be7d",
"db_info_field_id": "75fe63ea-5885-48cd-8c19-b2efe1e2962d",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-01-11T21:01:43.2430848+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>75fe63ea-5885-48cd-8c19-b2efe1e2962d</db_info_field_id> <id>e3682678-4eaa-4012-8aaf-5775e532779c</id> <modified_dateutc>2026-01-11T21:01:43.243Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>68183337-5bcc-4424-a634-09e62950be7d</target_id> <value>sample string 4</value> </db_info_data>