Objects
Get object custom attributes
Retrieve the object's custom attributes as an array. Each element carries the attribute name, value, flags and the source object. This is the same representation that is embedded as the customAttributes array in the full object document. Inherited attributes are included; the sourceObject field identifies the object an inherited attribute originates from (0 when the attribute is defined directly on this object).
get/v1/objects/{object-id}/custom-attributes
Path parameters
object-idinteger required
Response
Array of custom attributes.
Example response
[
{
"name": "rack",
"value": "A12",
"flags": {
"inheritable": false,
"redefined": false,
"conflict": false
},
"sourceObject": 0
}
]