Updates the job measurement detail with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The job measurement detail id.

globally unique identifier

Required

Body Parameters :

job_measurement_details
NameDescriptionTypeAdditional 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

Request Formats :

application/json, text/json

Sample:
{
  "id": "3ceb6fd3-e096-4a23-b0a6-2d17020c30b2",
  "job_measurement_id": "aa3f2cef-9f72-4aa8-88a5-b5bc3d06feda",
  "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-16T09:25:07.4883123+00:00"
}

application/xml, text/xml

Sample:
<job_measurement_details xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <display_measured_value>sample string 8</display_measured_value>
  <id>3ceb6fd3-e096-4a23-b0a6-2d17020c30b2</id>
  <job_measurement_id>aa3f2cef-9f72-4aa8-88a5-b5bc3d06feda</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-16T09:25:07.488Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
</job_measurement_details>

Response Information

Resource Description :

IHttpActionResult containing the updated job measurement detail.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.