Stripe Integration
Search customers, inspect payments, manage subscriptions, issue refunds, and track disputes — conversationally.
What you can do
- Search & Lookup — Find customers by email, name, or Stripe ID.
- Payments & Refunds — View recent payments, payment intents, and issue full or partial refunds.
- Subscriptions — List and manage active, cancelled, or past-due subscriptions.
- Catalog — Browse your products and their associated price points.
- Billing — List open invoices and generate payment links for customers.
- Disputes — Track chargebacks and monitor evidence submission deadlines.
- Marketing — List available coupons and active discount codes.
- Balance — Check your current Stripe account balance and pending payouts.
Getting your Stripe Secret Key
⚠️
ImportantUse your Secret Key, not the Publishable Key. The Secret Key starts with
sk_live_ (production) or sk_test_ (test mode). Never share your secret key publicly.- Go to dashboard.stripe.com → Developers → API keys.
- Under "Secret key", click Reveal test key (for testing) or copy from the Standard Keys section.
- For production use, consider creating a Restricted Key:
Recommended restricted key permissions for Flarite:
Customers — Read
Charges — Read
Payment Intents — Read
Refunds — Write (if you want to issue refunds)
Subscriptions — Read
Invoices — Read
Products — Read
Prices — Read
Disputes — Read- Copy the key and paste it into Flarite → Stripe → API Tokens.
- Add an optional nickname like "Production Stripe" or "Test Mode".
- Click Save & Verify — Flarite will confirm your account name and mode (live/test).
✨
TipYou can add both a
sk_test_... key and a sk_live_... key as separate credentials. Give them clear nicknames so you know which is which.Example prompts
"Find customer [email protected] and show their last 5 invoices"
"What's my current Stripe account balance?"
"List all subscriptions that are past due"
"Refund the last payment from customer cus_ABC123"
"Show me all open disputes with evidence due in the next 7 days"
"Create a payment link for price_XYZ at quantity 1"Test vs Live mode
Flarite identifies whether your key is in test or live mode during validation and displays a badge. Test mode credentials operate on your Stripe test data — no real money is moved. Always verify you're using the correct key before taking actions like refunds.
