Creates a new work order info field value.

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

Foreign key of the custom info field this value was entered for.

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": "7b3d11a9-f41c-4a3e-a429-76eb40bfdb64",
  "target_id": "65702bc2-f703-44d4-a35e-2052d1bd1013",
  "db_info_field_id": "4ea3de6d-55b0-4f32-bfe6-6d3bdf9ae505",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:48.4217736+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>4ea3de6d-55b0-4f32-bfe6-6d3bdf9ae505</db_info_field_id>
  <id>7b3d11a9-f41c-4a3e-a429-76eb40bfdb64</id>
  <modified_dateutc>2026-09-16T08:35:48.421Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>65702bc2-f703-44d4-a35e-2052d1bd1013</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

IHttpActionResult containing the created work order info field value.

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

Foreign key of the custom info field this value was entered for.

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": "7ea6e856-9b65-4ab1-90d6-67f497ad3f3a",
  "target_id": "16c4aaf5-256c-49c5-a3c0-7262f5777e67",
  "db_info_field_id": "4a238e7b-fbba-477b-ab71-a607d456d9b1",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:48.4217736+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>4a238e7b-fbba-477b-ab71-a607d456d9b1</db_info_field_id>
  <id>7ea6e856-9b65-4ab1-90d6-67f497ad3f3a</id>
  <modified_dateutc>2026-09-16T08:35:48.421Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>16c4aaf5-256c-49c5-a3c0-7262f5777e67</target_id>
  <value>sample string 4</value>
</db_info_data>