Used to add/remove recipients to/from a suppression list.

📘

Record limit

This API is limited to 10,000 records in a single request. If you are importing more records, batch the data into multiple requests.

Example

curl --request POST \
  --url https://external-api.xtremepush.com/api/external/import/suppression-list \
  --header 'content-type: application/json' \
  --data '{
    "apptoken": "YOUR_APPTOKEN",
    "id": "LIST_ID",
    "items": [
      "[email protected]",
      "[email protected]"
    ]
  }'
Language
Click Try It! to start a request and see the response here!