Appearance
Adding to the deny list
INFO
If you do not have a deny list enabled for your app, this request will fail. Please reach out if you'd like to configure a deny list.
Privy allows you to easily add an individual email address or an email domain to your deny list.
Adding an email address
To add an individual email address to the deny list, make a POST
request to:
sh
https://auth.privy.io/api/v1/apps/<your-privy-app-id>/denylist
In the body of the request, include the following fields:
Field | Type | Description |
---|---|---|
type | 'email' | Specifies that the request adds an email address to the deny list. |
value | string | The email address to add to the deny list. |
Below is a sample cURL command for adding an email to the deny list:
bash
curl --request POST 'https://auth.privy.io/api/v1/apps/<your-privy-app-id>/denylist' \
-u "<your-privy-app-id>:<your-privy-app-secret>" \
-H "privy-app-id: <your-privy-app-id>" \
-H "Content-Type: application/json" \
--data-raw '{
"type": "email",
"value": "user@email.com"
}'
A successful response will include the new deny list entry, like below
json
{
"id": "denylist-entry-ID",
"rule_type": "email",
"value": "user@email.com",
},
Adding an email domain
To add an email domain to your deny list, make a POST
request to:
https://auth.privy.io/api/v1/apps/<your-privy-app-id>/denylist
In the body of the request, include the following fields
Field | Type | Description |
---|---|---|
type | 'emailDomain' | Specifies that the request adds an email domain to the deny list. |
value | string | The email domain to add to the deny list. Do not include the '@' symbol. |
Below is a sample cURL command for adding an email domain to the deny list:
bash
curl --request POST 'https://auth.privy.io/api/v1/apps/<your-privy-app-id>/denylist' \
-u "<your-privy-app-id>:<your-privy-app-secret>" \
-H "privy-app-id: <your-privy-app-id>" \
-H "Content-Type: application/json" \
--data-raw '{
"type": "emailDomain",
"value": "email.com"
}'
A successful response will include the new deny list entry, like below
json
{
"id": "denylist-entry-ID",
"rule_type": "emailDomain",
"value": "email.com",
},