Creates a new 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": "f2491426-f348-4236-b93d-9df6d890a02c",
  "target_id": "2e8dfd80-115a-444b-b9f9-9f94b1aa2979",
  "db_info_field_id": "2c39b884-eeff-4750-bdbd-347cc1eea58c",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T20:57:55.5870446+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>2c39b884-eeff-4750-bdbd-347cc1eea58c</db_info_field_id>
  <id>f2491426-f348-4236-b93d-9df6d890a02c</id>
  <modified_dateutc>2026-01-11T20:57:55.587Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>2e8dfd80-115a-444b-b9f9-9f94b1aa2979</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult

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": "fc9b1436-c0ea-4e43-82e5-0711e1773a7c",
  "target_id": "c1f6b70e-2456-4583-a34b-ba275a998ef5",
  "db_info_field_id": "7934b9d8-bd2c-40e2-b4dc-07d42dd77df9",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-01-11T20:57:55.6172433+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>7934b9d8-bd2c-40e2-b4dc-07d42dd77df9</db_info_field_id>
  <id>fc9b1436-c0ea-4e43-82e5-0711e1773a7c</id>
  <modified_dateutc>2026-01-11T20:57:55.617Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>c1f6b70e-2456-4583-a34b-ba275a998ef5</target_id>
  <value>sample string 4</value>
</db_info_data>