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

bashANYconnectaccountslist
bash
stripe accounts list --limit 20

Retrieve connected account

bashANYconnectaccountsretrieve
bash
stripe accounts retrieve acct_123

Create an Express account

bashANYconnectaccountscreate
bash
stripe accounts create --type express --country US --email seller@example.com

Billing and Subscriptions

Create subscription schedule

bashANYbillingsubscription-schedules
bash
stripe subscription_schedules create --customer cus_123 --start-date now

Create a percentage coupon

bashANYbillingcoupons
bash
stripe coupons create --percent-off 20 --duration once

Create promotion code

bashANYbillingpromotion-codes
bash
stripe promotion_codes create --coupon coupon_123 --code SAVE20

List credit notes

bashANYbillingcredit-notes
bash
stripe credit_notes list --limit 20

List customer balance transactions

bashANYbillingcustomers
bash
stripe customers balance_transactions list cus_123 --limit 20

Test Clocks and Time Travel

Create test clock

bashANYtest-clockstesting
bash
stripe test_helpers test_clocks create --frozen-time 1735689600 --name "Monthly billing clock"

List test clocks

bashANYtest-clockslist
bash
stripe test_helpers test_clocks list --limit 10

Advance test clock

bashANYtest-clocksadvance
bash
stripe test_helpers test_clocks advance clock_123 --frozen-time 1738291200

Create customer under test clock

bashANYtest-clockscustomers
bash
stripe customers create --name "Test Clock Customer" --test-clock clock_123

Recommended next

No recommendations yet.