stripe-customers

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Stripe Customers

Stripe 客户

List, search, and view customer details and subscriptions.
列出、搜索并查看客户详情及订阅信息。

Commands

命令

List recent customers

列出最近的客户

bash
python3 customers/scripts/stripe_customers.py list --limit 10
bash
python3 customers/scripts/stripe_customers.py list --limit 10

Search customers by email

通过邮箱搜索客户

bash
python3 customers/scripts/stripe_customers.py search "john@example.com"
bash
python3 customers/scripts/stripe_customers.py search "john@example.com"

Get customer details (including subscriptions)

获取客户详情(包含订阅信息)

bash
python3 customers/scripts/stripe_customers.py get <customer-id>
bash
python3 customers/scripts/stripe_customers.py get <customer-id>

List active subscriptions

列出活跃订阅

bash
python3 customers/scripts/stripe_customers.py subscriptions --status active --limit 20
bash
python3 customers/scripts/stripe_customers.py subscriptions --status active --limit 20

Subscription summary (counts by status)

订阅汇总(按状态统计数量)

bash
python3 customers/scripts/stripe_customers.py sub-summary
bash
python3 customers/scripts/stripe_customers.py sub-summary

Follow-Up Questions

后续问题示例

  • "List my most recent customers"
  • "Search for customer john@example.com"
  • "Show all active subscriptions"
  • "How many subscribers do I have by status?"
  • "列出我最新的客户"
  • "搜索客户john@example.com"
  • "展示所有活跃订阅"
  • "我按状态划分的订阅用户有多少?"