Creates a new object that belongs to category Task
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": "51b5e9ec-a993-4f4a-bf33-7af71696baf8",
"target_id": "31d53160-0372-49ec-ad63-9f2e950c8da7",
"db_info_field_id": "bc49365d-8f94-4bac-9e93-b1d2d0ad4c53",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-03-07T13:11:49.1430199+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>bc49365d-8f94-4bac-9e93-b1d2d0ad4c53</db_info_field_id> <id>51b5e9ec-a993-4f4a-bf33-7af71696baf8</id> <modified_dateutc>2026-03-07T13:11:49.143Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>31d53160-0372-49ec-ad63-9f2e950c8da7</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": "3ff6098c-3a87-4a78-9618-258e47473d85",
"target_id": "7ac6fff7-ac4d-4a67-9e33-f2e2cc978c53",
"db_info_field_id": "6f00a58a-3cda-40aa-a76a-05b3767585b6",
"value": "sample string 4",
"sys_logical_delete": true,
"modified_dateutc": "2026-03-07T13:11:49.1549427+00:00"
}
application/xml, text/xml
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>6f00a58a-3cda-40aa-a76a-05b3767585b6</db_info_field_id> <id>3ff6098c-3a87-4a78-9618-258e47473d85</id> <modified_dateutc>2026-03-07T13:11:49.154Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <target_id>7ac6fff7-ac4d-4a67-9e33-f2e2cc978c53</target_id> <value>sample string 4</value> </db_info_data>