bash
stripe customers create --name "Ada Lovelace" --email ada@example.comResource CRUD patterns for customers, products, prices, payment intents, checkout sessions, refunds, and subscriptions.
stripe customers create --name "Ada Lovelace" --email ada@example.comstripe customers create --name "Ada Lovelace" --email ada@example.com --phone +15555550123stripe customers list --limit 20stripe customers retrieve cus_123stripe customers update cus_123 --metadata plan=pro --metadata source=clistripe customers delete cus_123stripe products create --name "Pro Plan" --description "Monthly plan"stripe products list --limit 20stripe products update prod_123 --active falsestripe prices create --unit-amount 3000 --currency usd --product prod_123stripe prices create --unit-amount 19900 --currency usd --product prod_123 --recurring interval=yearstripe prices list --product prod_123 --limit 20stripe payment_intents create --amount 5000 --currency usdstripe payment_intents create --amount 5000 --currency usd --customer cus_123stripe payment_intents capture pi_123stripe payment_intents cancel pi_123stripe checkout sessions create --mode payment --success-url https://example.com/success --cancel-url https://example.com/cancel --line-items price=price_123,quantity=1stripe checkout sessions retrieve cs_test_123stripe refunds create --payment-intent pi_123stripe refunds create --payment-intent pi_123 --amount 1500stripe subscriptions create --customer cus_123 --items price=price_123stripe subscriptions list --limit 20stripe subscriptions cancel sub_123stripe invoices list --limit 20stripe invoices pay in_123stripe invoiceitems create --customer cus_123 --amount 1200 --currency usd --description "Support fee"