Endpoint
/api/v2/tenants/{tenantId}/customAttributes
Path Parameters
tenantId
string

customAttributeValues
array

customAttributeValues.customAttribute
customAttributeValues.description
customAttributeValues.id
customAttributeValues.value
Values of the custom attributes values.
description
string

(Optional) Description of the custom attributes.

name
string

Name of the custom attribute.

{
  "customAttributeValues": [
    {
      "description": "creating first value for tenant create",
      "value": "test_val_1_for_custom_attr_type_for_sp_1"
    },
    {
      "description": "creating second value for s tenant update",
      "value": "test_val_2_for_custom_attr_type_for_sp_2"
    }
  ],
  "description": "creating custom_type for tenant-create",
  "name": "custom_attr_type_for_tenant"
}

Responses

OK

description
string

id
integer

name
string

{
  "description": "creating custom_type for tenant-create",
  "id": 1,
  "name": "custom_attr_type_for_tenant"
}