POST
/
v3
/
contact-blacklist-rules
/
email-exceptions
Create an email exception blacklist rule
curl --request POST \
  --url https://api.reply.io/v3/contact-blacklist-rules/email-exceptions \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "pattern": "user@example.com"
}
'
{
  "id": 123,
  "pattern": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json

Request body for creating an email exception blacklist rule

pattern
string
required

Email address to allow as exception. Must be a valid email format (e.g., user@example.com)

Example:

"user@example.com"

Response

Email exception blacklist rule created successfully

An exception rule that allows an email pattern even if it matches a blacklist rule

id
integer

Unique identifier of the rule

pattern
string

Email pattern to allow as exception