Retrieves all work order info field values, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of work order info field values.

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": "4ab2aadb-43ee-41c5-ac38-8b00609a475d",
  "target_id": "535e15ba-f163-471e-a941-5832bd0e8cb7",
  "db_info_field_id": "db94eb00-9464-4c1d-aab0-ca11fdbba18a",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:46.0936733+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>db94eb00-9464-4c1d-aab0-ca11fdbba18a</db_info_field_id>
  <id>4ab2aadb-43ee-41c5-ac38-8b00609a475d</id>
  <modified_dateutc>2026-09-16T08:35:46.093Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>535e15ba-f163-471e-a941-5832bd0e8cb7</target_id>
  <value>sample string 4</value>
</db_info_data>