Skip to main content
GET
/
api
/
website_user_attributes
/
values
Get values for a website user attribute
curl --request GET \
  --url https://admin.snagsolutions.io/api/website_user_attributes/values \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "value": "<string>",
      "id": "<string>",
      "websiteId": "<string>",
      "organizationId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "customFieldId": "<string>",
      "userId": "<string>"
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

websiteId
string<uuid>

Unique identifier for the website

Example:

"123e4567-e89b-12d3-a456-426614174001"

organizationId
string<uuid>

Unique identifier for the organization

Example:

"123e4567-e89b-12d3-a456-426614174002"

userIds
required

Unique identifier for the user

Example:

"123e4567-e89b-12d3-a456-426614174004"

limit
integer
default:10

Maximum number of records to return (max 100)

Required range: 1 <= x <= 100
Example:

50

startingAfter
string<uuid>

Pagination cursor to start after a specific resource ID

Example:

"123e4567-e89b-12d3-a456-426614174010"

Response

200

data
object[]
required
hasNextPage
boolean
required