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_property| Name | Description | Type | Additional 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": "1139c784-67eb-4a75-88c6-54903e44d4c5",
"db_info_field_id": "61d91d3b-2521-46f1-801d-d1463a881ace",
"name": "sample string 3",
"value": "sample string 4",
"sequence": 5,
"modified_dateutc": "2026-03-07T14:55:09.8453378+00:00"
}
application/xml, text/xml
Sample:
<db_info_field_property xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>61d91d3b-2521-46f1-801d-d1463a881ace</db_info_field_id> <id>1139c784-67eb-4a75-88c6-54903e44d4c5</id> <modified_dateutc>2026-03-07T14:55:09.845Z</modified_dateutc> <name>sample string 3</name> <sequence>5</sequence> <value>sample string 4</value> </db_info_field_property>