Retrieves all measurement types, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of measurement types.
measurement_type| Name | Description | Type | Additional 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": "cff2487d-4907-46e6-bd7f-9d31e2f1b817",
"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-16T10:12:31.5387083+00:00"
}
application/xml, text/xml
Sample:
<measurement_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>cff2487d-4907-46e6-bd7f-9d31e2f1b817</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-16T10:12:31.538Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> </measurement_type>