Update subscription
documentedUpdate a subscription.
POST /v1/subscriptions/{id}Subscriptionsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.stripe.com/v1/subscriptions/{{$subscription_id}}" \
-X POST \
-H "Authorization: Bearer {{STRIPE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"metadata": {"order_id": "{{$order_id}}", "note": "{{$note}}"}, "proration_behavior": "{{$proration_behavior}}", "billing_cycle_anchor": {{$billing_cycle_anchor}}, "cancel_at_period_end": {{$cancel_at_period_end}} }'