Retrieves the info field property with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The info field property id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the info field property, or 404 Not Found if it doesn't exist.
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": "9bf1bb5e-9624-4b6b-b441-afd49b951ec3",
"db_info_field_id": "a737f3ef-cde0-4ea0-8412-f4eef42caf78",
"name": "sample string 3",
"value": "sample string 4",
"sequence": 5,
"modified_dateutc": "2026-09-16T08:37:32.2561191+00:00"
}
application/xml, text/xml
Sample:
<db_info_field_property xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_info_field_id>a737f3ef-cde0-4ea0-8412-f4eef42caf78</db_info_field_id> <id>9bf1bb5e-9624-4b6b-b441-afd49b951ec3</id> <modified_dateutc>2026-09-16T08:37:32.256Z</modified_dateutc> <name>sample string 3</name> <sequence>5</sequence> <value>sample string 4</value> </db_info_field_property>