GET
/
users
/
{user_id}
/
custom-attributes
Get extended custom attributes for user
curl --request GET \
  --url http://localhost:3001/portal-api/users/{user_id}/custom-attributes \
  --header 'Authorization: <api-key>'
[
  {
    "Value": "true",
    "ID": 1,
    "CustomAttribute": {
      "Name": "Terms of use",
      "Identifier": "terms-of-use",
      "Type": "Boolean",
      "Behaviour": "Edit and view",
      "AddToKeyMetadata": true,
      "Required": true,
      "ShowOnSignUp": true,
      "WriteOnceReadMany": true
    }
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

user_id
integer
required

UID of user

Example:

1

Response

200 - application/json

OK

Value
string

custom attribute value

Example:

"true"

ID
integer

UID of this user custom attribute

Example:

1

CustomAttribute
object