Skip to main content
GET
/
api
/
users
/
metadatas
Get user metadata
curl --request GET \
  --url https://admin.snagsolutions.io/api/users/metadatas \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

organizationId
string<uuid>

UUID of the organization

Example:

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

websiteId
string<uuid>

UUID of the website

Example:

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

userId
string<uuid>

UUID of the user

Example:

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

walletAddress
string

Wallet address of the user

Example:

"0x1234567890abcdef1234567890abcdef12345678"

externalIdentifier
string | null

External identifier for the user

Maximum string length: 255
Example:

"user-external-id"

limit
integer
default:10

Number of records to fetch

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

10

startingAfter
string<uuid>

Fetch records starting after this ID

Example:

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

Minimum string length: 5

Response

200

Response schema for fetching user metadata

data
object[]
required
hasNextPage
boolean
required

Indicates if there are more records available

Example:

true