Retrieves all job measurement details, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of job measurement details.
job_measurement_details| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| job_measurement_id |
FK to job_measurement |
globally unique identifier | |
| measure_code |
Code identifying which measurement type was measured (denormalized copy of ). |
string |
Max length: 50 |
| measure_name |
Display name of the measurement type (denormalized copy of ). |
string |
Max length: 50 |
| measure_unit_code |
Code of the unit of measure the value is expressed in. |
string |
Max length: 50 |
| measure_unit_name |
Display name of the unit of measure the value is expressed in. |
string |
Max length: 50 |
| measured_value |
Raw measured value, as text. |
string |
Max length: 255 |
| display_measured_value |
Formatted/display representation of (e.g. including unit), shown to end users. |
string |
Max length: 255 |
| sys_logical_delete |
Soft-delete flag: when true, this measurement detail 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
{
"id": "77d5558d-3572-4c6f-a9b7-6b92eff01b08",
"job_measurement_id": "31cb6d79-5e93-4dbb-984a-d3dbd90641ca",
"measure_code": "sample string 3",
"measure_name": "sample string 4",
"measure_unit_code": "sample string 5",
"measure_unit_name": "sample string 6",
"measured_value": "sample string 7",
"display_measured_value": "sample string 8",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:15:46.3478275+00:00"
}
application/xml, text/xml
<job_measurement_details xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <display_measured_value>sample string 8</display_measured_value> <id>77d5558d-3572-4c6f-a9b7-6b92eff01b08</id> <job_measurement_id>31cb6d79-5e93-4dbb-984a-d3dbd90641ca</job_measurement_id> <measure_code>sample string 3</measure_code> <measure_name>sample string 4</measure_name> <measure_unit_code>sample string 5</measure_unit_code> <measure_unit_name>sample string 6</measure_unit_name> <measured_value>sample string 7</measured_value> <modified_dateutc>2026-09-16T10:15:46.347Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> </job_measurement_details>