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 \"Accept: application/json\" \
-H \"Content-Type: application/x-www-form-urlencoded\" \
-d \"items[0][id]={{ITEM_ID}}\" \
-d \"items[0][price]={{PRICE_ID}}\" \
-d \"items[0][quantity]={{QUANTITY}}\" \
-d \"cancel_at_period_end={{CANCEL_AT_PERIOD_END}}\" \
-d \"proration_behavior={{PRORATION_BEHAVIOR}}\"