Retrieves one or more units by external ID. The response returns the units in the same order as in the request.
Response with a list of units
Bad Request
res = client.units.retrieve('temperature:deg_c') res = client.units.retrieve(['temperature:deg_c', 'pressure:bar'])
{- "items": [
- {
- "externalId": "temperature:deg_c",
- "name": "DEG_C",
- "longName": "degree Celsius",
- "symbol": "°C",
- "aliasNames": [
- "°C",
- "C",
- "deg C",
- "degC",
- "DegC"
], - "quantity": "Temperature",
- "conversion": {
- "multiplier": 1,
- "offset": 273.15
}, - "source": "qudt.org",
}
]
}