Retrieves the company info field value with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The company info field value id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the company info field value, or 404 Not Found if it doesn't exist.

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": "0b50a488-4dd3-41d5-bca3-00d6f26d4032",
  "target_id": "6bddb97d-d2a3-4afe-bf35-30879d2aa6ad",
  "db_info_field_id": "ddf8b92a-85c6-4055-b722-01a512f44934",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T09:25:04.1123838+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>ddf8b92a-85c6-4055-b722-01a512f44934</db_info_field_id>
  <id>0b50a488-4dd3-41d5-bca3-00d6f26d4032</id>
  <modified_dateutc>2026-09-16T09:25:04.112Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>6bddb97d-d2a3-4afe-bf35-30879d2aa6ad</target_id>
  <value>sample string 4</value>
</db_info_data>