cURL
curl --request PATCH \ --url https://api-v2.missioninbox.com/billing/update_subscription/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "price_id": "<string>", "billing_address": {} } '
{ "message": "<string>", "subscription_id": "<string>", "status": "<string>", "current_period_end": 123, "cancel_at_period_end": true }
Update existing subscription price, billing address, or reactivate non-renewing subscription.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
New Stripe price ID
Updated billing address
Show child attributes