Retrieves the job measurement with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The job measurement id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the job measurement, or 404 Not Found if it doesn't exist.
job_measurement| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| db_report_id |
FK to db_report |
globally unique identifier | |
| db_info_field_id |
FK to db_info_field |
globally unique identifier | |
| user_id |
Foreign key of the user who collected this measurement. |
globally unique identifier | |
| dateutc_done |
Date+Time in UTC when it has been collected |
date | |
| date_done |
Local Date+Time when it has been collected |
date | |
| rawdata |
The rawdata that comes from the device |
string | |
| collected_with_device |
To know if it was collected via a device (like Testo) |
boolean | |
| device_name |
Name/model of the measuring device used to collect this measurement (when is true). |
string |
Max length: 50 |
| device_serial_number |
Serial number of the measuring device used to collect this measurement. |
string |
Max length: 50 |
| device_firmware_version |
Firmware version of the measuring device used to collect this measurement. |
string |
Max length: 50 |
| device_firmware_date |
Release date of the device firmware identified by . |
date | |
| sys_logical_delete |
Soft-delete flag: when true, this measurement 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": "49f4b3e5-b43c-4a69-b301-052430539799",
"db_report_id": "b114bcfc-57a1-44a4-8b48-36c185553472",
"db_info_field_id": "8c499a7d-65b6-42a7-a66e-ed2a67a56d81",
"user_id": "5f476d72-2803-4a11-ad96-ed17d84941e0",
"dateutc_done": "2026-09-16T09:24:31.2961328+00:00",
"date_done": "2026-09-16T09:24:31.2961328+00:00",
"rawdata": "sample string 7",
"collected_with_device": true,
"device_name": "sample string 9",
"device_serial_number": "sample string 10",
"device_firmware_version": "sample string 11",
"device_firmware_date": "2026-09-16T09:24:31.3134004+00:00",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T09:24:31.3134004+00:00"
}
application/xml, text/xml
<job_measurement xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <collected_with_device>true</collected_with_device> <date_done>2026-09-16T09:24:31.296Z</date_done> <dateutc_done>2026-09-16T09:24:31.296Z</dateutc_done> <db_info_field_id>8c499a7d-65b6-42a7-a66e-ed2a67a56d81</db_info_field_id> <db_report_id>b114bcfc-57a1-44a4-8b48-36c185553472</db_report_id> <device_firmware_date>2026-09-16T09:24:31.313Z</device_firmware_date> <device_firmware_version>sample string 11</device_firmware_version> <device_name>sample string 9</device_name> <device_serial_number>sample string 10</device_serial_number> <id>49f4b3e5-b43c-4a69-b301-052430539799</id> <modified_dateutc>2026-09-16T09:24:31.313Z</modified_dateutc> <rawdata>sample string 7</rawdata> <sys_logical_delete>true</sys_logical_delete> <user_id>5f476d72-2803-4a11-ad96-ed17d84941e0</user_id> </job_measurement>