Retrieves the measurement type with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The measurement type id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the measurement type, or 404 Not Found if it doesn't exist.

measurement_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

measure_code

Short code identifying this measurement type.

string

Max length: 50

measure_name

Display name of this measurement type.

string

Max length: 50

measure_unit_code

Code of the default unit of measure for this measurement type.

string

Max length: 50

measure_unit_name

Display name of the default unit of measure for this measurement type.

string

Max length: 50

sys_logical_delete

Soft-delete flag: when true, this measurement type is considered deleted, optimizing synchronization (can be physically deleted offline).

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "5682b8a8-ebd4-45d5-8cc6-2c00e2a5cded",
  "measure_code": "sample string 2",
  "measure_name": "sample string 3",
  "measure_unit_code": "sample string 4",
  "measure_unit_name": "sample string 5",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:39.1093506+00:00"
}

application/xml, text/xml

Sample:
<measurement_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>5682b8a8-ebd4-45d5-8cc6-2c00e2a5cded</id>
  <measure_code>sample string 2</measure_code>
  <measure_name>sample string 3</measure_name>
  <measure_unit_code>sample string 4</measure_unit_code>
  <measure_unit_name>sample string 5</measure_unit_name>
  <modified_dateutc>2026-09-16T08:35:39.109Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
</measurement_type>