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 |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "73bc0dab-96ac-4939-97f4-50fb3646c080",
"db_info_id": "3d5a31bf-b7bc-4920-9e1e-9b0f31cfb858",
"db_input_type_id": "1189e28b-fb1b-4fcc-8639-4c143aea131a",
"sequence": 4,
"title": "sample string 5",
"default_value": "sample string 6",
"is_readonly": true,
"is_mandatory": true,
"reference_db_info_field_id": "2e4251f2-1fde-4897-aca0-8b49cb91c935",
"visible_on_app": true,
"udf_name": "sample string 11",
"modified_dateutc": "2026-03-07T13:19:25.2581046+00:00"
}
application/xml, text/xml
Sample:
<db_info_field xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_id>3d5a31bf-b7bc-4920-9e1e-9b0f31cfb858</db_info_id> <db_input_type_id>1189e28b-fb1b-4fcc-8639-4c143aea131a</db_input_type_id> <default_value>sample string 6</default_value> <id>73bc0dab-96ac-4939-97f4-50fb3646c080</id> <is_mandatory>true</is_mandatory> <is_readonly>true</is_readonly> <modified_dateutc>2026-03-07T13:19:25.258Z</modified_dateutc> <reference_db_info_field_id>2e4251f2-1fde-4897-aca0-8b49cb91c935</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>