Subscriptions API
Update subscription
Update an existing subscription.
Canceled subscriptions cannot be updated.
For an in-depth explanation of each parameter, refer to the Create subscription endpoint.
patch/v2/customers/{customerId}/subscriptions/{subscriptionId}
Headers
idempotency-keystring
Example:123e4567-e89b-12d3-a456-426
A unique key to ensure idempotent requests. This key should be a UUID v4 string.
Request body
Example request
{
"amount": {
"currency": "EUR",
"value": "10.00"
},
"description": "Subscription of streaming channel",
"interval": "1 months",
"startDate": "2025-01-01",
"times": 6,
"webhookUrl": "https://example.com/webhook",
"mandateId": "mdt_5B8cwPMGnU"
}Response
The updated subscription object.