Skip to main content
POST
/
outbound
/
suppression
Create suppression rule
curl --request POST \
  --url https://api.jetemail.com/outbound/suppression \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target_value": "[email protected]",
  "reason": "Spam reports"
}
'
{
  "success": true,
  "rule": {
    "id": 42,
    "target_value": "[email protected]",
    "status": 1,
    "created_date": "2026-05-11 10:30:00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://support.jetemail.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key for account management endpoints. Use your api_ prefixed token.

Body

application/json
target_value
string<email>
required
reason
string | null
Example:

"Spam reports"

Response

Suppression rule created

success
boolean
Example:

true

rule
object