User attributes

get
Authorizations
Query parameters
afterstringOptional
limitnumberOptional
Responses
200Success
application/json
Responseall of
and
get
GET /v1/user-attributes HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "paging": {
    "next": {
      "after": "text"
    }
  },
  "data": [
    {
      "id": "text",
      "name": "text",
      "label": "text",
      "type": "STRING",
      "allowMultipleValues": true
    }
  ]
}
get
Authorizations
Path parameters
userAttributeIdstringRequired
Responses
200Success
application/json
get
GET /v1/user-attributes/{userAttributeId} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
200Success
{
  "id": "text",
  "name": "text",
  "label": "text",
  "type": "STRING",
  "allowMultipleValues": true
}

Last updated

Was this helpful?