Update configuration set
PATCH /api/v1/partner/email/configuration-sets/:idAll fields are optional — pass only what you want to change.
Common use: kill-switch a set with sending_enabled: false,
toggle suppression behaviour, rename.
Request body
{
"name": "production-v2",
"sending_enabled": false,
"suppression_options": "BOUNCE",
"tags": { "env": "prod", "version": "v2" }
}| Field | Type | Notes |
|---|---|---|
name | string | Must remain unique per partner |
description | string | |
sending_enabled | bool | Disable to halt new sends through this set |
reputation_tracking_enabled | bool | |
suppression_options | string | NONE / BOUNCE / COMPLAINT / BOUNCE_AND_COMPLAINT |
custom_redirect_domain | string | |
tags | object | Replaces existing tags entirely (not merge) |
cURL
curl -X PATCH \
https://apis.splashifypro.com/api/v1/partner/email/configuration-sets/cs_550e8400-... \
-H "Authorization: Bearer $SPLASHIFY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"sending_enabled": false}'