Skip to main content

Cancel Subscription

DELETE/api/v1/bank/wallet/subscription/{subscription_uuid}/cancel/{wallet_uuid}/Bearer TokenCancel a subscription and stop future charges

Authentication

Include your API key in the Authorization header. See Authentication for details.

Path parameters

ParameterTypeRequiredDescription
subscription_uuidUUIDYesSubscription to cancel
wallet_uuidUUIDYesWallet that owns the subscription

Cancellation flow

Response

{
"subscription_uuid": "def-456",
"status": "cancelled",
"cancelled_at": "2026-03-21T14:30:00Z"
}
Pending charges

Cancellation stops future billing only. Charges already processed (status confirmed) are not reversed. To refund a past charge, use the Refund endpoint.

Code examples

curl -X DELETE "https://core-manager.a55.tech/api/v1/bank/wallet/subscription/def-456/cancel/abc-123/" \
-H "Authorization: Bearer YOUR_API_KEY"