Skip to main content
GET
/
v1
/
apps
/
{app_id}
/
allowlist
List allowlist entries
curl --request GET \
  --url https://api.privy.io/v1/apps/{app_id}/allowlist \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'privy-app-id: <privy-app-id>'
[
  {
    "id": "abc123",
    "type": "email",
    "value": "[email protected]",
    "appId": "clxyz456",
    "acceptedAt": null
  }
]

SDK methods

Learn more about managing your allowlist using our SDKs here.

Authorizations

Authorization
string
header
required

Basic Auth header with your app ID as the username and your app secret as the password.

Headers

privy-app-id
string
required

ID of your Privy app.

Path Parameters

app_id
string
required

The ID of the app.

Response

200 - application/json

List of allowlist entries.

id
string
required
type
string
required
value
string
required
appId
string
required
acceptedAt
number | null
required