GET
/
allowlists
/
{allowlistId}
/
entries
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/allowlists/{allowlistId}/entries \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "entries": [
    {
      "id": "95b11417-f18f-457f-8804-68e361f9164f",
      "allowListId": "95b11417-f18f-457f-8804-68e361f9164f",
      "walletPublicKey": "<string>",
      "email": "[email protected]",
      "phoneNumber": "<string>",
      "alias": "<string>"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

allowlistId
string
required

ID of the allowlist

Query Parameters

orderBy
string

$COLUMN_NAME-asc|desc

offset
integer
default: 0

The number of items to skip before starting to collect the result set

limit
integer
default: 20

The numbers of items to return

query
string

Keywords to search for in alias, walletPublicKey, or email

Response

200 - application/json
count
integer
entries
object[]