Get list of measure familiy
GET
/api/rest/v1/measure-families
Measure family
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/rest/v1/measure-families'
Response Response Example
200 - Example 1
{
"_links": {
"first": {
"href": "string"
},
"next": {
"href": "string"
},
"previous": {
"href": "string"
},
"self": {
"href": "string"
}
},
"current_page": 0,
"_embedded": {
"items": [
{
"_links": {
"self": {
"href": "string"
}
},
"code": "Area",
"standard": "SQUARE_METER",
"units": [
{
"code": "SQUARE_MILLIMETER",
"convert": {
"mul": "0.001"
},
"symbol": "mm²"
},
{
"code": "SQUARE_CENTIMETER",
"convert": {
"mul": "0.001"
},
"symbol": "cm²"
}
]
}
]
}
}
Request
None
Responses
Modified at 2023-08-15 05:53:55