v51

latestOpenAPI 3.0.2raw.githubusercontent.com2026-08-01245104440.0 KB
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.

namestring

Attribute name.

valuestring

Attribute value.

sourceObjectinteger

ID of the object an inherited attribute originates from; 0 if defined directly on this object.

Example response

[
  {
    "name": "rack",
    "value": "A12",
    "flags": {
      "inheritable": false,
      "redefined": false,
      "conflict": false
    },
    "sourceObject": 0
  }
]