Saves the object that belongs to category Task

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": "3cd91592-e1b6-4e0f-b02f-ca5c3b29c631",
  "target_id": "6936eb45-4f5e-4763-addc-72d854f48151",
  "db_info_field_id": "5d5d234f-fa0a-4be7-a1b2-3d59481b55ce",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T20:59:52.2344386+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>5d5d234f-fa0a-4be7-a1b2-3d59481b55ce</db_info_field_id>
  <id>3cd91592-e1b6-4e0f-b02f-ca5c3b29c631</id>
  <modified_dateutc>2026-01-11T20:59:52.234Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>6936eb45-4f5e-4763-addc-72d854f48151</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": "c678e71c-b991-4de3-85b3-c4f006be717c",
  "target_id": "98ab7b07-36bc-4c4d-97ac-eb5d31467318",
  "db_info_field_id": "b6f8641e-9766-42f3-8bc7-2447aad74a1b",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T20:59:52.2469389+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>b6f8641e-9766-42f3-8bc7-2447aad74a1b</db_info_field_id>
  <id>c678e71c-b991-4de3-85b3-c4f006be717c</id>
  <modified_dateutc>2026-01-11T20:59:52.246Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>98ab7b07-36bc-4c4d-97ac-eb5d31467318</target_id>
  <value>sample string 4</value>
</db_info_data>