Skip to main content
POST
/
outbound
/
suppression
/
import
Import suppression rules from CSV
curl --request POST \
  --url https://api.jetemail.com/outbound/suppression/import \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: text/csv' \
  --data 'target_value
[email protected]
[email protected]
'
{
  "success": true,
  "inserted": 12,
  "skipped": 3,
  "failed": [
    {
      "row": 5,
      "reason": "target_value \"not-an-email\" is not a valid email"
    }
  ]
}

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

text/csv

The body is of type string.

Example:

"target_value\r\[email protected]\r\[email protected]\r\n"

Response

Import processed

success
boolean
Example:

true

inserted
integer
Example:

12

skipped
integer
Example:

3

failed
object[]