Skip to Content
API ReferenceConfiguration SetsUpdate configuration set

Update configuration set

PATCH /api/v1/partner/email/configuration-sets/:id

All 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" } }
FieldTypeNotes
namestringMust remain unique per partner
descriptionstring
sending_enabledboolDisable to halt new sends through this set
reputation_tracking_enabledbool
suppression_optionsstringNONE / BOUNCE / COMPLAINT / BOUNCE_AND_COMPLAINT
custom_redirect_domainstring
tagsobjectReplaces 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}'