Retrieves the db_unit_of_measure 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_unit_of_measure| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name | string | ||
| code | string | ||
| is_enabled | boolean | ||
| measure_type | string | ||
| system_type | string | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| measure_is_decimal | boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "4d9c7d4f-aa68-4511-a389-7ab6feb4bba4",
"name": "sample string 2",
"code": "sample string 3",
"is_enabled": true,
"measure_type": "sample string 5",
"system_type": "sample string 6",
"modified_dateutc": "2026-01-11T21:03:52.8370788+00:00",
"measure_is_decimal": true
}
application/xml, text/xml
Sample:
<db_unit_of_measure xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 3</code> <id>4d9c7d4f-aa68-4511-a389-7ab6feb4bba4</id> <is_enabled>true</is_enabled> <measure_is_decimal>true</measure_is_decimal> <measure_type>sample string 5</measure_type> <modified_dateutc>2026-01-11T21:03:52.837Z</modified_dateutc> <name>sample string 2</name> <system_type>sample string 6</system_type> </db_unit_of_measure>