Retrieves all info field definitions, 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 definitions.

db_info_field
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
db_info_id

Foreign key of the chapter this field belongs to.

globally unique identifier
db_input_type_id

Foreign key of the constant defining this field's input type (e.g. textarea, datetime), controlling how it is rendered and validated.

globally unique identifier
sequence

Order field, need to order by sequence asc

integer
title

The label of the field

string

Max length: 100

default_value

Contains the value that should be used when no value exists

string

Max length: 255

is_readonly

Avoid user to edit the value using the UI

boolean
is_mandatory

Indicates a value must be filled in for this field before the form can be saved.

boolean
reference_db_info_field_id

Foreign key of another info field this field references (e.g. for computed/derived fields).

globally unique identifier
visible_on_app

Indicates whether this field is shown to technicians in the mobile app.

boolean
udf_name

When set, the name of the udf_ column (on the parent entity) this field's value is stored in, instead of a row in .

string

Max length: 20

archived

Indicates whether this field has been archived (no longer shown).

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "4c6e6ea4-4570-4015-8de0-def5be6408fa",
  "db_info_id": "baeecfe9-f3e0-449c-bd2c-5ba22bc43955",
  "db_input_type_id": "4fd5d958-7e8d-4667-8ce5-708387c6a501",
  "sequence": 4,
  "title": "sample string 5",
  "default_value": "sample string 6",
  "is_readonly": true,
  "is_mandatory": true,
  "reference_db_info_field_id": "90c39047-553e-46c0-9570-ab6f89ee5df3",
  "visible_on_app": true,
  "udf_name": "sample string 11",
  "archived": true,
  "modified_dateutc": "2026-09-16T10:14:18.488089+00:00"
}

application/xml, text/xml

Sample:
<db_info_field xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <db_info_id>baeecfe9-f3e0-449c-bd2c-5ba22bc43955</db_info_id>
  <db_input_type_id>4fd5d958-7e8d-4667-8ce5-708387c6a501</db_input_type_id>
  <default_value>sample string 6</default_value>
  <id>4c6e6ea4-4570-4015-8de0-def5be6408fa</id>
  <is_mandatory>true</is_mandatory>
  <is_readonly>true</is_readonly>
  <modified_dateutc>2026-09-16T10:14:18.488Z</modified_dateutc>
  <reference_db_info_field_id>90c39047-553e-46c0-9570-ab6f89ee5df3</reference_db_info_field_id>
  <sequence>4</sequence>
  <title>sample string 5</title>
  <udf_name>sample string 11</udf_name>
  <visible_on_app>true</visible_on_app>
</db_info_field>