Get custom attributes types and values of a tenant
This endpoint is used to fetch custom attribute type and their respective values.
URL
GET https://{api-url}/api/v2/tenants/{tenantId}/customAttributes/{attributeId}
Sample URLs
https://{api-url}/api/v2/tenants/client_93/customAttributes/63
https://{api-url}/api/v2/tenants/msp_92/customAttributes/64
Sample response
{
"id": 63,
"name": "custom_attr_from_API_test_1",
"description": "custom_attr_from_API_test_1_update",
"customAttributeValues": [{
"id": 396,
"value": "custom_attr_from_API_test_1_value",
"description": "desc_custom_attr_from_API_test_1_update_1"
},
{
"id": 399,
"value": "custom_attr_from_API_test_2_value",
"description": "custom_attr_from_API_test_2_value_description"
}
],
"organization": {
"id": 93,
"uniqueId": "client_93",
"name": "Brocade Lab",
"activated": true
}
}