subscription_id returned by GET /dfy/subscriptions.subscription_id: the subscription to cancel.confirmed_domains: every domain covered by that subscription, as a safety confirmation. A subscription can cover several domains, and cancelling it affects all of them - there is no way to cancel a single domain out of a subscription. If the list does not match the subscription's domains exactly, nothing is cancelled.⚠️ Cancelling an email accounts subscription also cancels its associated domain subscription automatically.
⚠️ Cancelling a domain subscription does NOT cancel the email accounts subscription. If you want those cancelled too, cancel them separately - otherwise the email accounts keep working and keep being billed.
curl --location 'https://api.plusvibe.ai/api/v1/dfy/cancel-subscription' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"workspace_id": "65099a0dd96fae8ab61130c0",
"subscription_id": "665f1a2b3c4d5e6f7a8b9c11",
"confirmed_domains": [
"acme-growth.com",
"acme-reach.com"
]
}'{
"status": "success"
}