Creates a new object that belongs to category User
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": "cf568422-a2ba-40fa-b1f9-aba0c4356c6c",
"target_id": "1cd11166-169d-4a79-b7ef-10cb1d33a769",
"db_info_field_id": "4bb36016-8377-4a67-8b42-87ef5436e3ed",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-03-07T14:51:10.0271573+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>4bb36016-8377-4a67-8b42-87ef5436e3ed</db_info_field_id> <id>cf568422-a2ba-40fa-b1f9-aba0c4356c6c</id> <modified_dateutc>2026-03-07T14:51:10.027Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>1cd11166-169d-4a79-b7ef-10cb1d33a769</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": "01d4803d-0b89-43ca-af7d-ae5ab8c21f0f",
"target_id": "ab50cf85-eac0-476c-a690-b55c8892afc8",
"db_info_field_id": "f0ef0094-ce3b-4197-af5c-c87811e6696a",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-03-07T14:51:10.0377202+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>f0ef0094-ce3b-4197-af5c-c87811e6696a</db_info_field_id> <id>01d4803d-0b89-43ca-af7d-ae5ab8c21f0f</id> <modified_dateutc>2026-03-07T14:51:10.037Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>ab50cf85-eac0-476c-a690-b55c8892afc8</target_id> <value>sample string 4</value> </db_info_data>