Skip to main content

Cancel Multiple Subscriptions

PUT /v2/subscription/customers/batch/action

Cancels multiple subscriptions in a single batch operation by providing an array of subscription identifiers. This endpoint processes each cancellation independently and returns a summary indicating how many succeeded and failed. Use this for bulk cancellation workflows, such as when a customer terminates multiple services at once or when performing administrative cleanup tasks.

Request Body

{
"ids": ["685e7d983d001012dde94f6a", "6855240ba990dd86023ead37"],
"action": "cancel"
}

Response Example

{
"message": "Processed 2 subscriptions, 2 successful, 0 failed",
"errors": []
}