GET
/
api
/
users
/
metadatas
curl --request GET \
  --url https://admin.snagsolutions.io/api/users/metadatas
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "hasNextPage": true
}

Query Parameters

organizationId
string

UUID of the organization

Example:

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

websiteId
string

UUID of the website

Example:

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

userId
string

UUID of the user

Example:

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

walletAddress
string

Wallet address of the user

Example:

"0x1234567890abcdef1234567890abcdef12345678"

limit
integer
default:10

Number of records to fetch

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

10

startingAfter
string

Fetch records starting after this ID

Example:

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

Response

200
application/json
200

Response schema for fetching user metadata

data
object[]
required
hasNextPage
boolean
required

Indicates if there are more records available

Example:

true