Retrieves all info field properties, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of info field properties.

db_info_field_property
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
db_info_field_id

db_info_field

globally unique identifier
name

The "code" of that property

string

Max length: 50

value

The value to display

string

Max length: 4000

sequence

Order field, need to order by sequence asc

integer
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "3082cd5c-e323-4c08-8738-0910362b1943",
  "db_info_field_id": "b8cd0607-e4a8-499c-ab50-29d12877681c",
  "name": "sample string 3",
  "value": "sample string 4",
  "sequence": 5,
  "modified_dateutc": "2026-09-16T10:14:40.6106587+00:00"
}

application/xml, text/xml

Sample:
<db_info_field_property xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>b8cd0607-e4a8-499c-ab50-29d12877681c</db_info_field_id>
  <id>3082cd5c-e323-4c08-8738-0910362b1943</id>
  <modified_dateutc>2026-09-16T10:14:40.610Z</modified_dateutc>
  <name>sample string 3</name>
  <sequence>5</sequence>
  <value>sample string 4</value>
</db_info_field_property>