Last updated 1 year ago
Unique ID
Name of User Attribute
Human friendly label for User Attribute
Type of the User Attribute
If true, a User can have multiple values for this User Attribute
const response = await fetch('/v1/user-attributes/{userAttributeId}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "id": "text", "name": "text", "label": "text", "type": "STRING", "allowMultipleValues": false }
const response = await fetch('/v1/user-attributes', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "paging": { "next": { "after": "text" } }, "data": [ { "id": "text", "name": "text", "label": "text", "type": "STRING", "allowMultipleValues": false } ] }