Retrieves the item with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
db_info_field| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| db_info_id |
db_info_id |
globally unique identifier | |
| db_input_type_id |
Constant that refer to the kind of info field (like textarea, datetime) |
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 |
is_mandatory |
boolean | |
| reference_db_info_field_id | globally unique identifier | ||
| visible_on_app |
visible_on_app |
boolean | |
| udf_name |
To know the POI is stored on udf_ columns or on the dbinfodata table |
string |
Max length: 20 |
| archived | boolean | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "9f7aa8c6-3317-40dd-8046-1d1f8c19e4e7",
"db_info_id": "fe3531d0-9dad-4798-bc96-4b1670d064d1",
"db_input_type_id": "d89ee26b-8f0c-4931-ac05-573313edab3c",
"sequence": 4,
"title": "sample string 5",
"default_value": "sample string 6",
"is_readonly": true,
"is_mandatory": true,
"reference_db_info_field_id": "8694aae1-be9f-4dbf-909b-7c097a51c898",
"visible_on_app": true,
"udf_name": "sample string 11",
"archived": true,
"modified_dateutc": "2026-06-16T22:33:59.780623+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>fe3531d0-9dad-4798-bc96-4b1670d064d1</db_info_id> <db_input_type_id>d89ee26b-8f0c-4931-ac05-573313edab3c</db_input_type_id> <default_value>sample string 6</default_value> <id>9f7aa8c6-3317-40dd-8046-1d1f8c19e4e7</id> <is_mandatory>true</is_mandatory> <is_readonly>true</is_readonly> <modified_dateutc>2026-06-16T22:33:59.780Z</modified_dateutc> <reference_db_info_field_id>8694aae1-be9f-4dbf-909b-7c097a51c898</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>