The units quality checkpoint results are recorded in.
idintegercodestringis_globalbooleanTrue for a shared unit, false for one your account created.
namestringnullable/qc-units-of-measurecatalog:readUnits quality checkpoint results are recorded in, separate from the inventory units of measure.
searchstringnullableFree-text match on name or code.
sortstringnullableComma-separated field:direction pairs, e.g. id:desc. Sortable: code, id, name. id is always added last, so paging is stable.
limitintegerRows to return. Maximum 200.
offsetintegerRows to skip. Maximum 10000: to read further, narrow the filters or page with updated_since.
data, with pagination.curl "https://public-api.nutrasoft.ca/v1/qc-units-of-measure?limit=50" \
-H "Authorization: Bearer $NUTRASOFT_API_KEY"{
"data": [
{
"id": 123,
"code": "SAMPLE-01",
"is_global": false,
"name": "Sample name"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 1,
"has_more": false
},
"order": "id:asc"
}/qc-units-of-measure/{qc_uom_id}catalog:readqc_uom_idintegerrequiredThe QC unit's id.
data.curl "https://public-api.nutrasoft.ca/v1/qc-units-of-measure/123" \
-H "Authorization: Bearer $NUTRASOFT_API_KEY"{
"data": {
"id": 123,
"code": "SAMPLE-01",
"is_global": false,
"name": "Sample name"
}
}