MeasurementSystems

List all measurementSystems viewable for API user

get
Authorizations
Query parameters
pageTokenstringOptional
limitinteger · int32Optional
sinceDeltaTokenstringOptional
fieldsstring[]Optional
Responses
200
Successful request
application/json
get
GET /measurementSystems HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Successful request

{
  "results": [
    {
      "measurementValues": [
        {
          "id": "550e8400-e29b-41d4-a716-446655440000",
          "order": 1,
          "externalCode": "text",
          "createdAt": "text",
          "externalId": "text",
          "lastModifiedAt": "text",
          "code": "text",
          "name": "text"
        }
      ],
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "externalCode": "text",
      "createdAt": "text",
      "externalId": "text",
      "lastModifiedAt": "text",
      "scale": 1,
      "name": "text"
    }
  ],
  "deltaToken": "text",
  "pageToken": "text"
}
get
Authorizations
Path parameters
idstring · hexadecimal-integerRequiredExample: 550e8400-e29b-41d4-a716-446655440000Pattern: ^[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}$
Responses
200
Successful request
application/json
get
GET /measurementSystems/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Successful request

{
  "measurementValues": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "order": 1,
      "externalCode": "text",
      "createdAt": "text",
      "externalId": "text",
      "lastModifiedAt": "text",
      "code": "text",
      "name": "text"
    }
  ],
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "externalCode": "text",
  "createdAt": "text",
  "externalId": "text",
  "lastModifiedAt": "text",
  "scale": 1,
  "name": "text"
}

Was this helpful?