Saves the object that belongs to category User

Request Information

URI Parameters :

None.

Body Parameters :

db_info_data
NameDescriptionTypeAdditional 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

Sample:
{
  "id": "76d32daf-62e1-4d53-bc06-72f476a4417e",
  "target_id": "d7f45c2a-2905-41b1-8e92-8da35ee9d87c",
  "db_info_field_id": "9d48315c-1e9f-4a9f-92a6-afee1d0c78d1",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T23:43:14.1396523+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>9d48315c-1e9f-4a9f-92a6-afee1d0c78d1</db_info_field_id>
  <id>76d32daf-62e1-4d53-bc06-72f476a4417e</id>
  <modified_dateutc>2026-01-11T23:43:14.139Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>d7f45c2a-2905-41b1-8e92-8da35ee9d87c</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

db_info_data
NameDescriptionTypeAdditional 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

Sample:
{
  "id": "a03c0806-df4c-47ba-91e4-dd459cc41050",
  "target_id": "b004a7d4-05ba-497c-89ff-7ca2820ba095",
  "db_info_field_id": "6181e3e1-ce67-4704-97eb-8a907062bb42",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T23:43:14.1396523+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>6181e3e1-ce67-4704-97eb-8a907062bb42</db_info_field_id>
  <id>a03c0806-df4c-47ba-91e4-dd459cc41050</id>
  <modified_dateutc>2026-01-11T23:43:14.139Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>b004a7d4-05ba-497c-89ff-7ca2820ba095</target_id>
  <value>sample string 4</value>
</db_info_data>