Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

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

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

string

Max length: 50

device_serial_number

string

Max length: 50

device_firmware_version

string

Max length: 50

device_firmware_date

date
sys_logical_delete

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "91def0a9-6d02-4e7a-890c-a525e95509b0",
  "db_report_id": "edbff9c3-b812-4fe1-8ab9-326f19e7afe6",
  "db_info_field_id": "3104805e-cf74-4fa1-9837-585ba7b5cdb2",
  "user_id": "3f3ec884-3930-4593-9d12-654e75796a9a",
  "dateutc_done": "2026-06-16T21:24:53.4065607+00:00",
  "date_done": "2026-06-16T21:24:53.4065607+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-06-16T21:24:53.4065607+00:00",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-06-16T21:24:53.4065607+00:00"
}

application/xml, text/xml

Sample:
<job_measurement xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <collected_with_device>true</collected_with_device>
  <date_done>2026-06-16T21:24:53.406Z</date_done>
  <dateutc_done>2026-06-16T21:24:53.406Z</dateutc_done>
  <db_info_field_id>3104805e-cf74-4fa1-9837-585ba7b5cdb2</db_info_field_id>
  <db_report_id>edbff9c3-b812-4fe1-8ab9-326f19e7afe6</db_report_id>
  <device_firmware_date>2026-06-16T21:24:53.406Z</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>91def0a9-6d02-4e7a-890c-a525e95509b0</id>
  <modified_dateutc>2026-06-16T21:24:53.406Z</modified_dateutc>
  <rawdata>sample string 7</rawdata>
  <sys_logical_delete>true</sys_logical_delete>
  <user_id>3f3ec884-3930-4593-9d12-654e75796a9a</user_id>
</job_measurement>