Developer Portal
  • Introduction
  • API Endpoint
  • Authentication
  • Errors
  • Rate Limiting
  • Pagination
  • Request IDs
  • API reference
    • Partner portals
      • Users
    • User attributes
    • Roles
    • Warehouses
      • Persistence Engine
Powered by GitBook
On this page

Was this helpful?

  1. API reference

User attributes

PreviousUsersNextRoles

Last updated 1 year ago

Was this helpful?

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
}
  • GET/v1/user-attributes
  • GET/v1/user-attributes/{userAttributeId}