Stripe CLI Connect & Billing Workflows

Connect, subscriptions, invoices, test clocks, and billing-oriented Stripe CLI workflows.

View
StandardDetailedCompact
Export
Copy the compact sheet, download it, or print it.
Download
`D` dense toggle · `C` copy all
## Connect Accounts
List connected accounts
stripe accounts list --limit 20
Retrieve connected account
stripe accounts retrieve acct_123
Create an Express account
stripe accounts create --type express --country US --email seller@example.com
## Billing and Subscriptions
Create subscription schedule
stripe subscription_schedules create --customer cus_123 --start-date now
Create a percentage coupon
stripe coupons create --percent-off 20 --duration once
Create promotion code
stripe promotion_codes create --coupon coupon_123 --code SAVE20
List credit notes
stripe credit_notes list --limit 20
List customer balance transactions
stripe customers balance_transactions list cus_123 --limit 20
## Test Clocks and Time Travel
Create test clock
stripe test_helpers test_clocks create --frozen-time 1735689600 --name "Monthly billing clock"
List test clocks
stripe test_helpers test_clocks list --limit 10
Advance test clock
stripe test_helpers test_clocks advance clock_123 --frozen-time 1738291200
Create customer under test clock
stripe customers create --name "Test Clock Customer" --test-clock clock_123

Recommended next

No recommendations yet.