pp-stripe
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseStripe — Printing Press CLI
Stripe — Printing Press CLI
Prerequisites: Install the CLI
前提条件:安装CLI
This skill drives the binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
stripe-pp-cli- Install via the Printing Press installer:
bash
npx -y @mvanhorn/printing-press install stripe --cli-only - Verify:
stripe-pp-cli --version - Ensure (or
$GOPATH/bin) is on$HOME/go/bin.$PATH
If the install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
npxbash
go install github.com/mvanhorn/printing-press-library/library/payments/stripe/cmd/stripe-pp-cli@latestIf reports "command not found" after install, the install step did not put the binary on . Do not proceed with skill commands until verification succeeds.
--version$PATHstripe-pp-cli matches the official stripe-cli verb-for-verb and adds what it deliberately omits: a local mirror of customers, subscriptions, invoices, charges, payouts, and events with FTS5 search; cross-entity SQL queries (); and dossier commands (, , , , ). Built for agents — every command is one-shot, one-shot, and emits structured output.
sqlhealthdunning-queuecustomer-360subs-at-riskpayout-reconcile本技能基于二进制文件运行。在调用本技能的任何命令之前,必须确认CLI已安装。如果未安装,请先执行以下步骤:
stripe-pp-cli- 通过Printing Press安装器安装:
bash
npx -y @mvanhorn/printing-press install stripe --cli-only - 验证安装:
stripe-pp-cli --version - 确保(或
$GOPATH/bin)已添加到$HOME/go/bin环境变量中。$PATH
如果安装失败(无Node环境、离线等情况),可改用Go直接安装(要求Go 1.26.3或更高版本):
npxbash
go install github.com/mvanhorn/printing-press-library/library/payments/stripe/cmd/stripe-pp-cli@latest如果安装后执行提示“command not found”,说明安装步骤未将二进制文件添加到中。请在验证成功前不要执行技能命令。
--version$PATHstripe-pp-cli与官方stripe-cli命令完全兼容,并额外提供了官方工具刻意省略的功能:客户、订阅、发票、收费、付款和事件的本地镜像(支持FTS5搜索);跨实体SQL查询(命令);以及档案命令(、、、、)。专为Agent设计——每个命令都是一次性执行,输出结构化数据。
sqlhealthdunning-queuecustomer-360subs-at-riskpayout-reconcileWhen to Use This CLI
何时使用本CLI
Reach for stripe-pp-cli when you need to (1) run analytics across customers/subs/invoices that Stripe's dashboard doesn't expose, (2) script payment ops in a CI/agent loop without daemon processes, (3) reconcile payouts and balance transactions, or (4) feed Stripe state into a non-Stripe system (CRM, accounting, outreach automation).
在以下场景中使用stripe-pp-cli:(1) 需要运行Stripe仪表板未公开的客户/订阅/发票跨维度分析;(2) 在CI/Agent循环中编写支付操作脚本,无需守护进程;(3) 对账付款和余额交易;(4) 将Stripe状态同步到非Stripe系统(CRM、会计系统、触达自动化工具)。
When NOT to Use This CLI (anti-triggers)
何时不应使用本CLI(反触发场景)
Do not use stripe-pp-cli for:
- Live-mode bulk writes you have not audited. Mutating commands (POST/PUT/PATCH/DELETE) against an key are blocked by default with a clear error; pass
sk_live_...(or set--confirm-live) once you have audited the invocation. PreferSTRIPE_CONFIRM_LIVE=1for development regardless.sk_test_... - In-person Terminal payments. resource commands are present but Stripe Terminal SDK is not in scope. Use the Terminal iOS/Android SDK.
terminal - Stripe Issuing card management workflows. commands are REST passthrough only; spending controls, dispute evidence packages not built. Use the Stripe Dashboard.
issuing - Stripe Tax registration. CRUD only; jurisdiction registration not in scope. Use Stripe Tax in Dashboard.
tax-rates - Connect platform fan-out across many connected accounts. Single account at a time via header. Multi-account loops via external script.
Stripe-Account - Local mock-server testing. Use stripe-mock directly via .
STRIPE_BASE_URL=http://localhost:12111
请勿在以下场景中使用stripe-pp-cli:
- 未经审计的生产环境批量写入操作。默认情况下,使用密钥执行的变更命令(POST/PUT/PATCH/DELETE)会被阻止并显示明确错误;在审计调用内容后,可通过传递
sk_live_...参数(或设置环境变量--confirm-live)解除限制。无论如何,开发环境优先使用STRIPE_CONFIRM_LIVE=1密钥。sk_test_... - 线下终端支付。虽然包含资源命令,但Stripe Terminal SDK不在本工具范围内,请使用Terminal iOS/Android SDK。
terminal - Stripe发卡卡管理流程。命令仅作为REST接口透传;支出控制、争议证据包功能未实现,请使用Stripe仪表板。
issuing - Stripe税务注册。仅支持的CRUD操作;辖区注册不在本工具范围内,请使用仪表板中的Stripe Tax功能。
tax-rates - Connect平台多账户批量操作。每次仅支持单个账户(通过头指定)。多账户循环操作需通过外部脚本实现。
Stripe-Account - 本地模拟服务器测试。通过设置直接使用stripe-mock。
STRIPE_BASE_URL=http://localhost:12111
Not Yet Wired (deferred to v0.2)
尚未实现的功能(计划在v0.2版本中支持)
| Area | Status | Workaround |
|---|---|---|
| Stripe Issuing (full workflow) | endpoint passthrough only | Use Stripe Dashboard |
| Stripe Terminal (in-person SDK) | endpoint passthrough only | Use Terminal SDK |
| Stripe Tax registration | | Use Stripe Tax in Dashboard |
| out of scope | Use |
| Connect account fan-out | single-account at a time | External script loops |
| 领域 | 状态 | 替代方案 |
|---|---|---|
| Stripe发卡(完整流程) | 仅接口透传 | 使用Stripe仪表板 |
| Stripe Terminal(线下SDK) | 仅接口透传 | 使用Terminal SDK |
| Stripe税务注册 | 仅支持 | 使用仪表板中的Stripe Tax功能 |
| 不在范围内 | 通过 |
| Connect平台多账户批量操作 | 每次仅支持单个账户 | 外部脚本循环实现 |
Unique Capabilities
独特功能
These capabilities aren't available in any other tool for this API.
这些功能是其他Stripe API工具所不具备的。
Local state that compounds
可累积的本地状态
-
— Compute a 0-100 health score for one or many customers from local SQLite, factoring in failed-payment count, dispute history, MRR contribution, subscription status, and account age.
healthUse this to feed customer-health signals into outreach, dunning, and renewal automation without burning hundreds of API calls per customer.bashstripe-pp-cli health cus_xyz --json --select score,failed_payments,mrr_contribution -
— List invoices in past_due/uncollectible state ranked by days-overdue, with last failure reason and customer email pulled from the local store.
dunning-queueWhen deciding which customers to follow up with about failed payments, this beats walking the Stripe dashboard or chaining 4+ API calls per row.bashstripe-pp-cli dunning-queue --json --select invoice,customer_email,days_overdue,last_failure_reason -
— Run read-only SQLite queries against the local Stripe mirror. All synced data lives in a generic 'resources' table — query with json_extract(data, '$.field') and filter by resource_type.
sqlWhen a one-off question doesn't fit the canned commands, drop into SQL instead of writing a script that hits the API a thousand times.bashstripe-pp-cli sql "SELECT json_extract(data,'$.email') AS email, COUNT(*) AS active_subs FROM resources WHERE resource_type='subscriptions' AND json_extract(data,'$.status')='active' GROUP BY json_extract(data,'$.customer') HAVING active_subs > 1" --json -
— Join payouts to balance_transactions to charges to customers from local store; flag missing balance_transactions and mismatches; CSV export.
payout-reconcileUse this for end-of-period payout reconciliation against bank statements or accounting systems — replaces the manual CSV-pivot ritual.bashstripe-pp-cli payout-reconcile --since 7d --csv -
— List subscriptions whose default payment method's card expires in a window, sorted by current MRR contribution.
subs-at-riskUse this monthly to proactively email customers whose card is about to expire — prevents involuntary churn.bashstripe-pp-cli subs-at-risk --within 30d --json --select customer_email,mrr,card_exp -
— Search every synced resource's metadata bag for a key/value across resource types; returns (resource_type, id, matched_kv) rows.
metadata-grepWhen integrating Stripe with a CRM via metadata tags, this finds every related resource in one query.bashstripe-pp-cli metadata-grep 'crm_id=acme-001' --json
-
— 基于本地SQLite计算单个或多个客户的0-100健康评分,考量因素包括失败支付次数、争议历史、MRR贡献、订阅状态和账户存续时间。
health使用此功能可将客户健康信号同步到触达、催款和续订自动化系统,无需为每个客户调用数百次API。bashstripe-pp-cli health cus_xyz --json --select score,failed_payments,mrr_contribution -
— 列出处于逾期/无法收回状态的发票,按逾期天数排序,并从本地存储中提取最后失败原因和客户邮箱。
dunning-queue在决定跟进哪些逾期付款客户时,此功能比手动浏览Stripe仪表板或为每一行数据链式调用4+次API更高效。bashstripe-pp-cli dunning-queue --json --select invoice,customer_email,days_overdue,last_failure_reason -
— 对本地Stripe镜像执行只读SQL查询。所有同步数据存储在通用的'resources'表中——使用json_extract(data, '$.field')查询字段,并按resource_type过滤。
sql当一次性查询需求无法通过预设命令满足时,直接使用SQL查询,无需编写调用上千次API的脚本。bashstripe-pp-cli sql "SELECT json_extract(data,'$.email') AS email, COUNT(*) AS active_subs FROM resources WHERE resource_type='subscriptions' AND json_extract(data,'$.status')='active' GROUP BY json_extract(data,'$.customer') HAVING active_subs > 1" --json -
— 从本地存储关联付款、余额交易、收费和客户数据;标记缺失的余额交易和不匹配项;支持CSV导出。
payout-reconcile使用此功能可在期末将付款与银行对账单或会计系统对账——替代手动CSV透视的繁琐流程。bashstripe-pp-cli payout-reconcile --since 7d --csv -
— 列出默认支付方式卡片将在指定窗口期过期的订阅,按当前MRR贡献排序。
subs-at-risk每月使用此功能主动向卡片即将过期的客户发送邮件——减少非自愿流失。bashstripe-pp-cli subs-at-risk --within 30d --json --select customer_email,mrr,card_exp -
— 跨资源类型搜索所有同步资源的metadata中的键/值对;返回(resource_type, id, matched_kv)行数据。
metadata-grep当通过metadata标签将Stripe与CRM集成时,此功能可通过一次查询找到所有相关资源。bashstripe-pp-cli metadata-grep 'crm_id=acme-001' --json
Agent-native plumbing
原生Agent适配
-
— One-shot dossier: customer profile + active subs + recent invoices + payment methods + recent charges + open disputes + lifetime spend.
customer-360Use this as the first command when investigating a customer ticket, support escalation, or churn risk — full context in one call.bashstripe-pp-cli customer-360 alice@example.com --json --compact -
— Fetch all Events since a cursor, persist new cursor in profile, no daemon. One-shot replacement for stripe-cli's listen daemon.
events-sinceUse this in cron-driven agent loops to replay only new events since the last run — no daemon to babysit, no missed events.bashstripe-pp-cli events-since --type 'invoice.*' --json --select id,type,created,data.object.id
-
— 一次性生成客户档案:客户信息 + 活跃订阅 + 近期发票 + 支付方式 + 近期收费 + 未解决争议 + 终身消费。
customer-360在处理客户工单、支持升级或流失风险调查时,将此作为第一个命令执行——一次调用获取完整上下文。bashstripe-pp-cli customer-360 alice@example.com --json --compact -
— 获取指定游标后的所有事件,在配置文件中保存新游标,无需守护进程。替代stripe-cli的listen守护进程的一次性解决方案。
events-since在定时Agent循环中使用此功能,仅重放自上次运行以来的新事件——无需维护守护进程,不会遗漏事件。bashstripe-pp-cli events-since --type 'invoice.*' --json --select id,type,created,data.object.id
Command Reference
命令参考
account — Manage account
- — <p>Retrieves the details of an account.</p>
stripe-pp-cli account
account-links — Manage account links
- — <p>Creates an AccountLink object that includes a single-use Stripe URL that the platform can redirect their user to...
stripe-pp-cli account-links
account-sessions — Manage account sessions
- — <p>Creates a AccountSession object that includes a single-use token that the platform can use on their front-end to...
stripe-pp-cli account-sessions
accounts — Manage accounts
- — <p>With <a href='/connect'>Connect</a>, you can delete accounts you manage.</p> <p>Test-mode accounts can be deleted...
stripe-pp-cli accounts delete - — <p>Returns a list of accounts connected to your platform via <a href='/docs/connect'>Connect</a>. If you’re not a...
stripe-pp-cli accounts get - — <p>Retrieves the details of an account.</p>
stripe-pp-cli accounts get-account - — <p>With <a href='/docs/connect'>Connect</a>, you can create Stripe accounts for your users. To do this, you’ll...
stripe-pp-cli accounts post - — <p>Updates a <a href='/connect/accounts'>connected account</a> by setting the values of the parameters passed. Any...
stripe-pp-cli accounts post-account
apple-pay — Manage apple pay
- — <p>Delete an apple pay domain.</p>
stripe-pp-cli apple-pay delete-domains-domain - — <p>List apple pay domains.</p>
stripe-pp-cli apple-pay get-domains - — <p>Retrieve an apple pay domain.</p>
stripe-pp-cli apple-pay get-domains-domain - — <p>Create an apple pay domain.</p>
stripe-pp-cli apple-pay post-domains
application-fees — Manage application fees
- — <p>Returns a list of application fees you’ve previously collected. The application fees are returned in sorted...
stripe-pp-cli application-fees get - — <p>Retrieves the details of an application fee that your account has collected. The same information is returned...
stripe-pp-cli application-fees get-id
apps — Manage apps
- — <p>List all secrets stored on the given scope.</p>
stripe-pp-cli apps get-secrets - — <p>Finds a secret in the secret store by name and scope.</p>
stripe-pp-cli apps get-secrets-find - — <p>Create or replace a secret in the secret store.</p>
stripe-pp-cli apps post-secrets - — <p>Deletes a secret from the secret store by name and scope.</p>
stripe-pp-cli apps post-secrets-delete
balance — Manage balance
- — <p>Retrieves the current account balance, based on the authentication that was used to make the request. For a...
stripe-pp-cli balance
balance-settings — Manage balance settings
- — <p>Retrieves balance settings for a given connected account. Related guide: <a href='/connect/authentication'>Making...
stripe-pp-cli balance-settings get - — <p>Updates balance settings for a given connected account. Related guide: <a href='/connect/authentication'>Making...
stripe-pp-cli balance-settings post
balance-transactions — Manage balance transactions
- — <p>Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and...
stripe-pp-cli balance-transactions get - — <p>Retrieves the balance transaction with the given ID.</p> <p>Note that this endpoint previously used the path...
stripe-pp-cli balance-transactions get-id
billing — Manage billing
- — <p>Lists billing active and inactive alerts</p>
stripe-pp-cli billing get-alerts - — <p>Retrieves a billing alert given an ID</p>
stripe-pp-cli billing get-alerts-id - — <p>Retrieves the credit balance summary for a customer.</p>
stripe-pp-cli billing get-credit-balance-summary - — <p>Retrieve a list of credit balance transactions.</p>
stripe-pp-cli billing get-credit-balance-transactions - — <p>Retrieves a credit balance transaction.</p>
stripe-pp-cli billing get-credit-balance-transactions-id - — <p>Retrieve a list of credit grants.</p>
stripe-pp-cli billing get-credit-grants - — <p>Retrieves a credit grant.</p>
stripe-pp-cli billing get-credit-grants-id - — <p>Retrieve a list of billing meters.</p>
stripe-pp-cli billing get-meters - — <p>Retrieves a billing meter given an ID.</p>
stripe-pp-cli billing get-meters-id - — <p>Retrieve a list of billing meter event summaries.</p>
stripe-pp-cli billing get-meters-id-event-summaries - — <p>Creates a billing alert</p>
stripe-pp-cli billing post-alerts - — <p>Reactivates this alert, allowing it to trigger again.</p>
stripe-pp-cli billing post-alerts-id-activate - — <p>Archives this alert, removing it from the list view and APIs. This is non-reversible.</p>
stripe-pp-cli billing post-alerts-id-archive - — <p>Deactivates this alert, preventing it from triggering.</p>
stripe-pp-cli billing post-alerts-id-deactivate - — <p>Creates a credit grant.</p>
stripe-pp-cli billing post-credit-grants - — <p>Updates a credit grant.</p>
stripe-pp-cli billing post-credit-grants-id - — <p>Expires a credit grant.</p>
stripe-pp-cli billing post-credit-grants-id-expire - — <p>Voids a credit grant.</p>
stripe-pp-cli billing post-credit-grants-id-void - — <p>Creates a billing meter event adjustment.</p>
stripe-pp-cli billing post-meter-event-adjustments - — <p>Creates a billing meter event.</p>
stripe-pp-cli billing post-meter-events - — <p>Creates a billing meter.</p>
stripe-pp-cli billing post-meters - — <p>Updates a billing meter.</p>
stripe-pp-cli billing post-meters-id - — <p>When a meter is deactivated, no more meter events will be accepted for this meter. You can’t attach a...
stripe-pp-cli billing post-meters-id-deactivate - — <p>When a meter is reactivated, events for this meter can be accepted and you can attach the meter to a price.</p>
stripe-pp-cli billing post-meters-id-reactivate
billing-portal — Manage billing portal
- — <p>Returns a list of configurations that describe the functionality of the customer portal.</p>
stripe-pp-cli billing-portal get-configurations - — <p>Retrieves a configuration that describes the functionality of the customer portal.</p>
stripe-pp-cli billing-portal get-configurations-configuration - — <p>Creates a configuration that describes the functionality and behavior of a PortalSession</p>
stripe-pp-cli billing-portal post-configurations - — <p>Updates a configuration that describes the functionality of the customer portal.</p>
stripe-pp-cli billing-portal post-configurations-configuration - — <p>Creates a session of the customer portal.</p>
stripe-pp-cli billing-portal post-sessions
charges — Manage charges
- — <p>Returns a list of charges you’ve previously created. The charges are returned in sorted order, with the most...
stripe-pp-cli charges get - — <p>Retrieves the details of a charge that has previously been created. Supply the unique charge ID that was returned...
stripe-pp-cli charges get-charge - — <p>Search for charges you’ve previously created using Stripe’s <a...
stripe-pp-cli charges get-search - — <p>This method is no longer recommended—use the <a href='/docs/api/payment_intents'>Payment Intents API</a> to...
stripe-pp-cli charges post - — <p>Updates the specified charge by setting the values of the parameters passed. Any parameters not provided will be...
stripe-pp-cli charges post-charge
checkout — Manage checkout
- — <p>Returns a list of Checkout Sessions.</p>
stripe-pp-cli checkout get-sessions - — <p>Retrieves a Checkout Session object.</p>
stripe-pp-cli checkout get-sessions-session - — <p>When retrieving a Checkout Session, there is an includable <strong>line_items</strong> property containing the...
stripe-pp-cli checkout get-sessions-session-line-items - — <p>Creates a Checkout Session object.</p>
stripe-pp-cli checkout post-sessions - — <p>Updates a Checkout Session object.</p> <p>Related guide: <a href='/payments/advanced/dynamic-updates'>Dynamically...
stripe-pp-cli checkout post-sessions-session - — <p>A Checkout Session can be expired when it is in one of these statuses: <code>open</code> </p> <p>After it...
stripe-pp-cli checkout post-sessions-session-expire
climate — Manage climate
- — <p>Lists all Climate order objects. The orders are returned sorted by creation date, with the most recently created...
stripe-pp-cli climate get-orders - — <p>Retrieves the details of a Climate order object with the given ID.</p>
stripe-pp-cli climate get-orders-order - — <p>Lists all available Climate product objects.</p>
stripe-pp-cli climate get-products - — <p>Retrieves the details of a Climate product with the given ID.</p>
stripe-pp-cli climate get-products-product - — <p>Lists all available Climate supplier objects.</p>
stripe-pp-cli climate get-suppliers - — <p>Retrieves a Climate supplier object.</p>
stripe-pp-cli climate get-suppliers-supplier - — <p>Creates a Climate order object for a given Climate product. The order will be processed immediately after...
stripe-pp-cli climate post-orders - — <p>Updates the specified order by setting the values of the parameters passed.</p>
stripe-pp-cli climate post-orders-order - — <p>Cancels a Climate order. You can cancel an order within 24 hours of creation. Stripe refunds the reservation...
stripe-pp-cli climate post-orders-order-cancel
confirmation-tokens — Manage confirmation tokens
- — <p>Retrieves an existing ConfirmationToken object</p>
stripe-pp-cli confirmation-tokens <confirmation_token>
country-specs — Manage country specs
- — <p>Lists all Country Spec objects available in the API.</p>
stripe-pp-cli country-specs get - — <p>Returns a Country Spec for a given Country code.</p>
stripe-pp-cli country-specs get-country
coupons — Manage coupons
- — <p>You can delete coupons via the <a href='https://dashboard.stripe.com/coupons'>coupon management</a> page of the...
stripe-pp-cli coupons delete - — <p>Returns a list of your coupons.</p>
stripe-pp-cli coupons get - — <p>Retrieves the coupon with the given ID.</p>
stripe-pp-cli coupons get-coupon - — <p>You can create coupons easily via the <a href='https://dashboard.stripe.com/coupons'>coupon management</a> page...
stripe-pp-cli coupons post - — <p>Updates the metadata of a coupon. Other coupon details (currency, duration, amount_off) are, by design, not...
stripe-pp-cli coupons post-coupon
credit-notes — Manage credit notes
- — <p>Returns a list of credit notes.</p>
stripe-pp-cli credit-notes get - — <p>Retrieves the credit note object with the given identifier.</p>
stripe-pp-cli credit-notes get-id - — <p>Get a preview of a credit note without creating it.</p>
stripe-pp-cli credit-notes get-preview - — <p>When retrieving a credit note preview, you’ll get a <strong>lines</strong> property containing the first...
stripe-pp-cli credit-notes get-preview-lines - — <p>Issue a credit note to adjust the amount of a finalized invoice. A credit note will first reduce the invoice’s...
stripe-pp-cli credit-notes post - — <p>Updates an existing credit note.</p>
stripe-pp-cli credit-notes post-id
customer-sessions — Manage customer sessions
- — <p>Creates a Customer Session object that includes a single-use client secret that you can use on your front-end to...
stripe-pp-cli customer-sessions
customers — Manage customers
- — <p>Permanently deletes a customer. It cannot be undone. Also immediately cancels any active subscriptions on the...
stripe-pp-cli customers delete - — <p>Returns a list of your customers. The customers are returned sorted by creation date, with the most recent...
stripe-pp-cli customers get - — <p>Retrieves a Customer object.</p>
stripe-pp-cli customers get-customer - — <p>Search for customers you’ve previously created using Stripe’s <a...
stripe-pp-cli customers get-search - — <p>Creates a new customer object.</p>
stripe-pp-cli customers post - — <p>Updates the specified customer by setting the values of the parameters passed. Any parameters not provided are...
stripe-pp-cli customers post-customer
disputes — Manage disputes
- — <p>Returns a list of your disputes.</p>
stripe-pp-cli disputes get - — <p>Retrieves the dispute with the given ID.</p>
stripe-pp-cli disputes get-dispute - — <p>When you get a dispute, contacting your customer is always the best first step. If that doesn’t work, you can...
stripe-pp-cli disputes post
entitlements — Manage entitlements
- — <p>Retrieve a list of active entitlements for a customer</p>
stripe-pp-cli entitlements get-active - — <p>Retrieve an active entitlement</p>
stripe-pp-cli entitlements get-active-id - — <p>Retrieve a list of features</p>
stripe-pp-cli entitlements get-features - — <p>Retrieves a feature</p>
stripe-pp-cli entitlements get-features-id - — <p>Creates a feature</p>
stripe-pp-cli entitlements post-features - — <p>Update a feature’s metadata or permanently deactivate it.</p>
stripe-pp-cli entitlements post-features-id
ephemeral-keys — Manage ephemeral keys
- — <p>Invalidates a short-lived API key for a given resource.</p>
stripe-pp-cli ephemeral-keys delete-key - — <p>Creates a short-lived API key for a given resource.</p>
stripe-pp-cli ephemeral-keys post
events — Manage events
- — <p>List events, going back up to 30 days. Each event data is rendered according to Stripe API version at its...
stripe-pp-cli events get - — <p>Retrieves the details of an event if it was created in the last 30 days. Supply the unique identifier of the...
stripe-pp-cli events get-id
exchange-rates — Manage exchange rates
- — <p>[Deprecated] The <code>ExchangeRate</code> APIs are deprecated. Please use the <a...
stripe-pp-cli exchange-rates get - — <p>[Deprecated] The <code>ExchangeRate</code> APIs are deprecated. Please use the <a...
stripe-pp-cli exchange-rates get-rate-id
file-links — Manage file links
- — <p>Returns a list of file links.</p>
stripe-pp-cli file-links get - — <p>Retrieves the file link with the given ID.</p>
stripe-pp-cli file-links get-link - — <p>Creates a new file link object.</p>
stripe-pp-cli file-links post - — <p>Updates an existing file link object. Expired links can no longer be updated.</p>
stripe-pp-cli file-links post-link
files — Manage files
- — <p>Returns a list of the files that your account has access to. Stripe sorts and returns the files by their creation...
stripe-pp-cli files get - — <p>Retrieves the details of an existing file object. After you supply a unique file ID, Stripe returns the...
stripe-pp-cli files get-file - — <p>To upload a file to Stripe, you need to send a request of type <code>multipart/form-data</code>. Include the file...
stripe-pp-cli files post
financial-connections — Manage financial connections
- — <p>Returns a list of Financial Connections <code>Account</code> objects.</p>
stripe-pp-cli financial-connections get-accounts - — <p>Retrieves the details of an Financial Connections <code>Account</code>.</p>
stripe-pp-cli financial-connections get-accounts-account - — <p>Lists all owners for a given <code>Account</code></p>
stripe-pp-cli financial-connections get-accounts-account-owners - — <p>Retrieves the details of a Financial Connections <code>Session</code></p>
stripe-pp-cli financial-connections get-sessions-session - — <p>Returns a list of Financial Connections <code>Transaction</code> objects.</p>
stripe-pp-cli financial-connections get-transactions - — <p>Retrieves the details of a Financial Connections <code>Transaction</code></p>
stripe-pp-cli financial-connections get-transactions-transaction - — <p>Disables your access to a Financial Connections <code>Account</code>. You will no longer be able to access data...
stripe-pp-cli financial-connections post-accounts-account-disconnect - — <p>Refreshes the data associated with a Financial Connections <code>Account</code>.</p>
stripe-pp-cli financial-connections post-accounts-account-refresh - — <p>Subscribes to periodic refreshes of data associated with a Financial Connections <code>Account</code>. When the...
stripe-pp-cli financial-connections post-accounts-account-subscribe - — <p>Unsubscribes from periodic refreshes of data associated with a Financial Connections <code>Account</code>.</p>
stripe-pp-cli financial-connections post-accounts-account-unsubscribe - — <p>To launch the Financial Connections authorization flow, create a <code>Session</code>. The session’s...
stripe-pp-cli financial-connections post-sessions
forwarding — Manage forwarding
- — <p>Lists all ForwardingRequest objects.</p>
stripe-pp-cli forwarding get-requests - — <p>Retrieves a ForwardingRequest object.</p>
stripe-pp-cli forwarding get-requests-id - — <p>Creates a ForwardingRequest object.</p>
stripe-pp-cli forwarding post-requests
identity — Manage identity
- — <p>List all verification reports.</p>
stripe-pp-cli identity get-verification-reports - — <p>Retrieves an existing VerificationReport</p>
stripe-pp-cli identity get-verification-reports-report - — <p>Returns a list of VerificationSessions</p>
stripe-pp-cli identity get-verification-sessions - — <p>Retrieves the details of a VerificationSession that was previously created.</p> <p>When the session status is...
stripe-pp-cli identity get-verification-sessions-session - — <p>Creates a VerificationSession object.</p> <p>After the VerificationSession is created, display a verification...
stripe-pp-cli identity post-verification-sessions - — <p>Updates a VerificationSession object.</p> <p>When the session status is <code>requires_input</code>, you can use...
stripe-pp-cli identity post-verification-sessions-session - — <p>A VerificationSession object can be canceled when it is in <code>requires_input</code> <a...
stripe-pp-cli identity post-verification-sessions-session-cancel - — <p>Redact a VerificationSession to remove all collected information from Stripe. This will redact the...
stripe-pp-cli identity post-verification-sessions-session-redact
invoice-payments — Manage invoice payments
- — <p>When retrieving an invoice, there is an includable payments property containing the first handful of those items....
stripe-pp-cli invoice-payments get - — <p>Retrieves the invoice payment with the given ID.</p>
stripe-pp-cli invoice-payments get-invoicepayments
invoice-rendering-templates — Manage invoice rendering templates
- — <p>List all templates, ordered by creation date, with the most recently created template appearing first.</p>
stripe-pp-cli invoice-rendering-templates get - — <p>Retrieves an invoice rendering template with the given ID. It by default returns the latest version of the...
stripe-pp-cli invoice-rendering-templates get-template
invoiceitems — Manage invoiceitems
- — <p>Deletes an invoice item, removing it from an invoice. Deleting invoice items is only possible when they’re not...
stripe-pp-cli invoiceitems delete - — <p>Returns a list of your invoice items. Invoice items are returned sorted by creation date, with the most recently...
stripe-pp-cli invoiceitems get - — <p>Retrieves the invoice item with the given ID.</p>
stripe-pp-cli invoiceitems get-invoiceitem - — <p>Creates an item to be added to a draft invoice (up to 250 items per invoice). If no invoice is specified, the...
stripe-pp-cli invoiceitems post - — <p>Updates the amount or description of an invoice item on an upcoming invoice. Updating an invoice item is only...
stripe-pp-cli invoiceitems post-invoiceitem
invoices — Manage invoices
- — <p>Permanently deletes a one-off invoice draft. This cannot be undone. Attempts to delete invoices that are no...
stripe-pp-cli invoices delete - — <p>You can list all invoices, or list the invoices for a specific customer. The invoices are returned sorted by...
stripe-pp-cli invoices get - — <p>Retrieves the invoice with the given ID.</p>
stripe-pp-cli invoices get-invoice - — <p>Search for invoices you’ve previously created using Stripe’s <a...
stripe-pp-cli invoices get-search - — <p>This endpoint creates a draft invoice for a given customer. The invoice remains a draft until you <a...
stripe-pp-cli invoices post - — <p>At any time, you can preview the upcoming invoice for a subscription or subscription schedule. This will show you...
stripe-pp-cli invoices post-create-preview - — <p>Draft invoices are fully editable. Once an invoice is <a href='/docs/billing/invoices/workflow#finalized'>finalize...
stripe-pp-cli invoices post-invoice
issuing — Manage issuing
- — <p>Returns a list of Issuing <code>Authorization</code> objects. The objects are sorted in descending order by...
stripe-pp-cli issuing get-authorizations - — <p>Retrieves an Issuing <code>Authorization</code> object.</p>
stripe-pp-cli issuing get-authorizations-authorization - — <p>Returns a list of Issuing <code>Cardholder</code> objects. The objects are sorted in descending order by creation...
stripe-pp-cli issuing get-cardholders - — <p>Retrieves an Issuing <code>Cardholder</code> object.</p>
stripe-pp-cli issuing get-cardholders-cardholder - — <p>Returns a list of Issuing <code>Card</code> objects. The objects are sorted in descending order by creation date,...
stripe-pp-cli issuing get-cards - — <p>Retrieves an Issuing <code>Card</code> object.</p>
stripe-pp-cli issuing get-cards-card - — <p>Returns a list of Issuing <code>Dispute</code> objects. The objects are sorted in descending order by creation...
stripe-pp-cli issuing get-disputes - — <p>Retrieves an Issuing <code>Dispute</code> object.</p>
stripe-pp-cli issuing get-disputes-dispute - — <p>Returns a list of personalization design objects. The objects are sorted in descending order by creation date,...
stripe-pp-cli issuing get-personalization-designs - — <p>Retrieves a personalization design object.</p>
stripe-pp-cli issuing get-personalization-designs-personalization-design - — <p>Returns a list of physical bundle objects. The objects are sorted in descending order by creation date, with the...
stripe-pp-cli issuing get-physical-bundles - — <p>Retrieves a physical bundle object.</p>
stripe-pp-cli issuing get-physical-bundles-physical-bundle - — <p>Lists all Issuing <code>Token</code> objects for a given card.</p>
stripe-pp-cli issuing get-tokens - — <p>Retrieves an Issuing <code>Token</code> object.</p>
stripe-pp-cli issuing get-tokens-token - — <p>Returns a list of Issuing <code>Transaction</code> objects. The objects are sorted in descending order by...
stripe-pp-cli issuing get-transactions - — <p>Retrieves an Issuing <code>Transaction</code> object.</p>
stripe-pp-cli issuing get-transactions-transaction - — <p>Updates the specified Issuing <code>Authorization</code> object by setting the values of the parameters passed....
stripe-pp-cli issuing post-authorizations-authorization - — <p>[Deprecated] Approves a pending Issuing <code>Authorization</code> object. This request should be made within the...
stripe-pp-cli issuing post-authorizations-authorization-approve - — <p>[Deprecated] Declines a pending Issuing <code>Authorization</code> object. This request should be made within the...
stripe-pp-cli issuing post-authorizations-authorization-decline - — <p>Creates a new Issuing <code>Cardholder</code> object that can be issued cards.</p>
stripe-pp-cli issuing post-cardholders - — <p>Updates the specified Issuing <code>Cardholder</code> object by setting the values of the parameters passed. Any...
stripe-pp-cli issuing post-cardholders-cardholder - — <p>Creates an Issuing <code>Card</code> object.</p>
stripe-pp-cli issuing post-cards - — <p>Updates the specified Issuing <code>Card</code> object by setting the values of the parameters passed. Any...
stripe-pp-cli issuing post-cards-card - — <p>Creates an Issuing <code>Dispute</code> object. Individual pieces of evidence within the <code>evidence</code>...
stripe-pp-cli issuing post-disputes - — <p>Updates the specified Issuing <code>Dispute</code> object by setting the values of the parameters passed. Any...
stripe-pp-cli issuing post-disputes-dispute - — <p>Submits an Issuing <code>Dispute</code> to the card network. Stripe validates that all evidence fields required...
stripe-pp-cli issuing post-disputes-dispute-submit - — <p>Creates a personalization design object.</p>
stripe-pp-cli issuing post-personalization-designs - — <p>Updates a card personalization object.</p>
stripe-pp-cli issuing post-personalization-designs-personalization-design - — <p>Attempts to update the specified Issuing <code>Token</code> object to the status specified.</p>
stripe-pp-cli issuing post-tokens-token - — <p>Updates the specified Issuing <code>Transaction</code> object by setting the values of the parameters passed. Any...
stripe-pp-cli issuing post-transactions-transaction
mandates — Manage mandates
- — <p>Retrieves a Mandate object.</p>
stripe-pp-cli mandates
payment-attempt-records — Manage payment attempt records
- — <p>List all the Payment Attempt Records attached to the specified Payment Record.</p>
stripe-pp-cli payment-attempt-records get - — <p>Retrieves a Payment Attempt Record with the given ID</p>
stripe-pp-cli payment-attempt-records get-id
payment-intents — Manage payment intents
- — <p>Returns a list of PaymentIntents.</p>
stripe-pp-cli payment-intents get - — <p>Retrieves the details of a PaymentIntent that has previously been created. </p> <p>You can retrieve a...
stripe-pp-cli payment-intents get-intent - — <p>Search for PaymentIntents you’ve previously created using Stripe’s <a...
stripe-pp-cli payment-intents get-search - — <p>Creates a PaymentIntent object.</p> <p>After the PaymentIntent is created, attach a payment method and <a...
stripe-pp-cli payment-intents post - — <p>Updates properties on a PaymentIntent object without confirming.</p> <p>Depending on which properties you update,...
stripe-pp-cli payment-intents post-intent
payment-links — Manage payment links
- — <p>Returns a list of your payment links.</p>
stripe-pp-cli payment-links get - — <p>Retrieve a payment link.</p>
stripe-pp-cli payment-links get-paymentlinks - — <p>Creates a payment link.</p>
stripe-pp-cli payment-links post - — <p>Updates a payment link.</p>
stripe-pp-cli payment-links post-paymentlinks
payment-method-configurations — Manage payment method configurations
- — <p>List payment method configurations</p>
stripe-pp-cli payment-method-configurations get - — <p>Retrieve payment method configuration</p>
stripe-pp-cli payment-method-configurations get-configuration - — <p>Creates a payment method configuration</p>
stripe-pp-cli payment-method-configurations post - — <p>Update payment method configuration</p>
stripe-pp-cli payment-method-configurations post-configuration
payment-method-domains — Manage payment method domains
- — <p>Lists the details of existing payment method domains.</p>
stripe-pp-cli payment-method-domains get - — <p>Retrieves the details of an existing payment method domain.</p>
stripe-pp-cli payment-method-domains get-paymentmethoddomains - — <p>Creates a payment method domain.</p>
stripe-pp-cli payment-method-domains post - — <p>Updates an existing payment method domain.</p>
stripe-pp-cli payment-method-domains post-paymentmethoddomains
payment-methods — Manage payment methods
- — <p>Returns a list of all PaymentMethods.</p>
stripe-pp-cli payment-methods get - — <p>Retrieves a PaymentMethod object attached to the StripeAccount. To retrieve a payment method attached to a...
stripe-pp-cli payment-methods get-paymentmethods - — <p>Creates a PaymentMethod object. Read the <a href='/docs/stripe-js/reference#stripe-create-payment-method'>Stripe.j...
stripe-pp-cli payment-methods post - — <p>Updates a PaymentMethod object. A PaymentMethod must be attached to a customer to be updated.</p>
stripe-pp-cli payment-methods post-paymentmethods
payment-records — Manage payment records
- — <p>Retrieves a Payment Record with the given ID</p>
stripe-pp-cli payment-records get-id - — <p>Report a new Payment Record. You may report a Payment Record as it is initialized and later report updates...
stripe-pp-cli payment-records post-report-payment
payouts — Manage payouts
- — <p>Returns a list of existing payouts sent to third-party bank accounts or payouts that Stripe sent to you. The...
stripe-pp-cli payouts get - — <p>Retrieves the details of an existing payout. Supply the unique payout ID from either a payout creation request or...
stripe-pp-cli payouts get-payout - — <p>To send funds to your own bank account, create a new payout object. Your <a href='#balance'>Stripe balance</a>...
stripe-pp-cli payouts post - — <p>Updates the specified payout by setting the values of the parameters you pass. We don’t change parameters that...
stripe-pp-cli payouts post-payout
plans — Manage plans
- — <p>Deleting plans means new subscribers can’t be added. Existing subscribers aren’t affected.</p>
stripe-pp-cli plans delete - — <p>Returns a list of your plans.</p>
stripe-pp-cli plans get - — <p>Retrieves the plan with the given ID.</p>
stripe-pp-cli plans get-plan - — <p>You can now model subscriptions more flexibly using the <a href='#prices'>Prices API</a>. It replaces the Plans...
stripe-pp-cli plans post - — <p>Updates the specified plan by setting the values of the parameters passed. Any parameters not provided are left...
stripe-pp-cli plans post-plan
prices — Manage prices
- — <p>Returns a list of your active prices, excluding <a href='/docs/products-prices/pricing-models#inline-pricing'>inli...
stripe-pp-cli prices get - — <p>Retrieves the price with the given ID.</p>
stripe-pp-cli prices get-price - — <p>Search for prices you’ve previously created using Stripe’s <a...
stripe-pp-cli prices get-search - — <p>Creates a new <a href='https://docs.stripe.com/api/prices'>Price</a> for an existing <a...
stripe-pp-cli prices post - — <p>Updates the specified price by setting the values of the parameters passed. Any parameters not provided are left...
stripe-pp-cli prices post-price
products — Manage products
- — <p>Delete a product. Deleting a product is only possible if it has no prices associated with it. Additionally,...
stripe-pp-cli products delete-id - — <p>Returns a list of your products. The products are returned sorted by creation date, with the most recently...
stripe-pp-cli products get - — <p>Retrieves the details of an existing product. Supply the unique product ID from either a product creation request...
stripe-pp-cli products get-id - — <p>Search for products you’ve previously created using Stripe’s <a...
stripe-pp-cli products get-search - — <p>Creates a new product object.</p>
stripe-pp-cli products post - — <p>Updates the specific product by setting the values of the parameters passed. Any parameters not provided will be...
stripe-pp-cli products post-id
promotion-codes — Manage promotion codes
- — <p>Returns a list of your promotion codes.</p>
stripe-pp-cli promotion-codes get - — <p>Retrieves the promotion code with the given ID. In order to retrieve a promotion code by the customer-facing...
stripe-pp-cli promotion-codes get-promotioncodes - — <p>A promotion code points to an underlying promotion. You can optionally restrict the code to a specific customer,...
stripe-pp-cli promotion-codes post - — <p>Updates the specified promotion code by setting the values of the parameters passed. Most fields are, by design,...
stripe-pp-cli promotion-codes post-promotioncodes
quotes — Manage quotes
- — <p>Returns a list of your quotes.</p>
stripe-pp-cli quotes get - — <p>Retrieves the quote with the given ID.</p>
stripe-pp-cli quotes get-quote - — <p>A quote models prices and services for a customer. Default options for <code>header</code>,...
stripe-pp-cli quotes post - — <p>A quote models prices and services for a customer.</p>
stripe-pp-cli quotes post-quote
radar — Manage radar
- — <p>Deletes a <code>ValueListItem</code> object, removing it from its parent value list.</p>
stripe-pp-cli radar delete-value-list-items-item - — <p>Deletes a <code>ValueList</code> object, also deleting any items contained within the value list. To be deleted,...
stripe-pp-cli radar delete-value-lists-value-list - — <p>Returns a list of early fraud warnings.</p>
stripe-pp-cli radar get-early-fraud-warnings - — <p>Retrieves the details of an early fraud warning that has previously been created. </p> <p>Please refer to the <a...
stripe-pp-cli radar get-early-fraud-warnings-early-fraud-warning - — <p>Returns a list of <code>ValueListItem</code> objects. The objects are sorted in descending order by creation...
stripe-pp-cli radar get-value-list-items - — <p>Retrieves a <code>ValueListItem</code> object.</p>
stripe-pp-cli radar get-value-list-items-item - — <p>Returns a list of <code>ValueList</code> objects. The objects are sorted in descending order by creation date,...
stripe-pp-cli radar get-value-lists - — <p>Retrieves a <code>ValueList</code> object.</p>
stripe-pp-cli radar get-value-lists-value-list - — <p>Request a Radar API fraud risk score from Stripe for a payment before sending it for external processor...
stripe-pp-cli radar post-payment-evaluations - — <p>Creates a new <code>ValueListItem</code> object, which is added to the specified parent value list.</p>
stripe-pp-cli radar post-value-list-items - — <p>Creates a new <code>ValueList</code> object, which can then be referenced in rules.</p>
stripe-pp-cli radar post-value-lists - — <p>Updates a <code>ValueList</code> object by setting the values of the parameters passed. Any parameters not...
stripe-pp-cli radar post-value-lists-value-list
refunds — Manage refunds
- — <p>Returns a list of all refunds you created. We return the refunds in sorted order, with the most recent refunds...
stripe-pp-cli refunds get - — <p>Retrieves the details of an existing refund.</p>
stripe-pp-cli refunds get-refund - — <p>When you create a new refund, you must specify a Charge or a PaymentIntent object on which to create it.</p>...
stripe-pp-cli refunds post - — <p>Updates the refund that you specify by setting the values of the passed parameters. Any parameters that you...
stripe-pp-cli refunds post-refund
reporting — Manage reporting
- — <p>Returns a list of Report Runs, with the most recent appearing first.</p>
stripe-pp-cli reporting get-report-runs - — <p>Retrieves the details of an existing Report Run.</p>
stripe-pp-cli reporting get-report-runs-report-run - — <p>Returns a full list of Report Types.</p>
stripe-pp-cli reporting get-report-types - — <p>Retrieves the details of a Report Type. (Certain report types require a <a...
stripe-pp-cli reporting get-report-types-report-type - — <p>Creates a new object and begin running the report. (Certain report types require a <a...
stripe-pp-cli reporting post-report-runs
reviews — Manage reviews
- — <p>Returns a list of <code>Review</code> objects that have <code>open</code> set to <code>true</code>. The objects...
stripe-pp-cli reviews get - — <p>Retrieves a <code>Review</code> object.</p>
stripe-pp-cli reviews get-review
setup-attempts — Manage setup attempts
- — <p>Returns a list of SetupAttempts that associate with a provided SetupIntent.</p>
stripe-pp-cli setup-attempts
setup-intents — Manage setup intents
- — <p>Returns a list of SetupIntents.</p>
stripe-pp-cli setup-intents get - — <p>Retrieves the details of a SetupIntent that has previously been created. </p> <p>Client-side retrieval using a...
stripe-pp-cli setup-intents get-intent - — <p>Creates a SetupIntent object.</p> <p>After you create the SetupIntent, attach a payment method and <a...
stripe-pp-cli setup-intents post - — <p>Updates a SetupIntent object.</p>
stripe-pp-cli setup-intents post-intent
shipping-rates — Manage shipping rates
- — <p>Returns a list of your shipping rates.</p>
stripe-pp-cli shipping-rates get - — <p>Returns the shipping rate object with the given ID.</p>
stripe-pp-cli shipping-rates get-token - — <p>Creates a new shipping rate object.</p>
stripe-pp-cli shipping-rates post - — <p>Updates an existing shipping rate object.</p>
stripe-pp-cli shipping-rates post-token
sigma — Manage sigma
- — <p>Returns a list of scheduled query runs.</p>
stripe-pp-cli sigma get-scheduled-query-runs - — <p>Retrieves the details of an scheduled query run.</p>
stripe-pp-cli sigma get-scheduled-query-runs-scheduled-query-run
sources — Manage sources
- — <p>Retrieves an existing source object. Supply the unique source ID from a source creation request and Stripe will...
stripe-pp-cli sources get - — <p>Creates a new source object.</p>
stripe-pp-cli sources post - — <p>Updates the specified source by setting the values of the parameters passed. Any parameters not provided will be...
stripe-pp-cli sources post-source
subscription-items — Manage subscription items
- — <p>Deletes an item from the subscription. Removing a subscription item from a subscription will not cancel the...
stripe-pp-cli subscription-items delete-item - — <p>Returns a list of your subscription items for a given subscription.</p>
stripe-pp-cli subscription-items get - — <p>Retrieves the subscription item with the given ID.</p>
stripe-pp-cli subscription-items get-item - — <p>Adds a new item to an existing subscription. No existing items will be changed or replaced.</p>
stripe-pp-cli subscription-items post - — <p>Updates the plan or quantity of an item on a current subscription.</p>
stripe-pp-cli subscription-items post-item
subscription-schedules — Manage subscription schedules
- — <p>Retrieves the list of your subscription schedules.</p>
stripe-pp-cli subscription-schedules get - — <p>Retrieves the details of an existing subscription schedule. You only need to supply the unique subscription...
stripe-pp-cli subscription-schedules get-schedule - — <p>Creates a new subscription schedule object. Each customer can have up to 500 active or scheduled subscriptions.</p>
stripe-pp-cli subscription-schedules post - — <p>Updates an existing subscription schedule.</p>
stripe-pp-cli subscription-schedules post-schedule
subscriptions — Manage subscriptions
- — <p>Cancels a customer’s subscription immediately. The customer won’t be charged again for the subscription....
stripe-pp-cli subscriptions delete-exposed-id - — <p>By default, returns a list of subscriptions that have not been canceled. In order to list canceled subscriptions,...
stripe-pp-cli subscriptions get - — <p>Retrieves the subscription with the given ID.</p>
stripe-pp-cli subscriptions get-exposed-id - — <p>Search for subscriptions you’ve previously created using Stripe’s <a...
stripe-pp-cli subscriptions get-search - — <p>Creates a new subscription on an existing customer. Each customer can have up to 500 active or scheduled...
stripe-pp-cli subscriptions post - — <p>Updates an existing subscription to match the specified parameters. When changing prices or quantities, we...
stripe-pp-cli subscriptions post-exposed-id
tax — Manage tax
- — <p>Finds a tax association object by PaymentIntent id.</p>
stripe-pp-cli tax get-associations-find - — <p>Retrieves a Tax <code>Calculation</code> object, if the calculation hasn’t expired.</p>
stripe-pp-cli tax get-calculations-calculation - — <p>Retrieves the line items of a tax calculation as a collection, if the calculation hasn’t expired.</p>
stripe-pp-cli tax get-calculations-calculation-line-items - — <p>Returns a list of Tax <code>Registration</code> objects.</p>
stripe-pp-cli tax get-registrations - — <p>Returns a Tax <code>Registration</code> object.</p>
stripe-pp-cli tax get-registrations-id - — <p>Retrieves Tax <code>Settings</code> for a merchant.</p>
stripe-pp-cli tax get-settings - — <p>Retrieves a Tax <code>Transaction</code> object.</p>
stripe-pp-cli tax get-transactions-transaction - — <p>Retrieves the line items of a committed standalone transaction as a collection.</p>
stripe-pp-cli tax get-transactions-transaction-line-items - — <p>Calculates tax based on the input and returns a Tax <code>Calculation</code> object.</p>
stripe-pp-cli tax post-calculations - — <p>Creates a new Tax <code>Registration</code> object.</p>
stripe-pp-cli tax post-registrations - — <p>Updates an existing Tax <code>Registration</code> object.</p> <p>A registration cannot be deleted after it has...
stripe-pp-cli tax post-registrations-id - — <p>Updates Tax <code>Settings</code> parameters used in tax calculations. All parameters are editable but none can...
stripe-pp-cli tax post-settings - — <p>Creates a Tax Transaction from a calculation, if that calculation hasn’t expired. Calculations expire after 90...
stripe-pp-cli tax post-transactions-create-from-calculation - — <p>Partially or fully reverses a previously created <code>Transaction</code>.</p>
stripe-pp-cli tax post-transactions-create-reversal
tax-codes — Manage tax codes
- — <p>A list of <a href='https://stripe.com/docs/tax/tax-categories'>all tax codes available</a> to add to Products in...
stripe-pp-cli tax-codes get - — <p>Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will return the...
stripe-pp-cli tax-codes get-id
tax-ids — Manage tax ids
- — <p>Deletes an existing account or customer <code>tax_id</code> object.</p>
stripe-pp-cli tax-ids delete-id - — <p>Returns a list of tax IDs.</p>
stripe-pp-cli tax-ids get - — <p>Retrieves an account or customer <code>tax_id</code> object.</p>
stripe-pp-cli tax-ids get-id - — <p>Creates a new account or customer <code>tax_id</code> object.</p>
stripe-pp-cli tax-ids post
tax-rates — Manage tax rates
- — <p>Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most recently created...
stripe-pp-cli tax-rates get - — <p>Retrieves a tax rate with the given ID</p>
stripe-pp-cli tax-rates get-taxrates - — <p>Creates a new tax rate.</p>
stripe-pp-cli tax-rates post - — <p>Updates an existing tax rate.</p>
stripe-pp-cli tax-rates post-taxrates
terminal — Manage terminal
- — <p>Deletes a <code>Configuration</code> object.</p>
stripe-pp-cli terminal delete-configurations-configuration - — <p>Deletes a <code>Location</code> object.</p>
stripe-pp-cli terminal delete-locations-location - — <p>Deletes a <code>Reader</code> object.</p>
stripe-pp-cli terminal delete-readers-reader - — <p>Returns a list of <code>Configuration</code> objects.</p>
stripe-pp-cli terminal get-configurations - — <p>Retrieves a <code>Configuration</code> object.</p>
stripe-pp-cli terminal get-configurations-configuration - — <p>Returns a list of <code>Location</code> objects.</p>
stripe-pp-cli terminal get-locations - — <p>Retrieves a <code>Location</code> object.</p>
stripe-pp-cli terminal get-locations-location - — <p>Returns a list of <code>Reader</code> objects.</p>
stripe-pp-cli terminal get-readers - — <p>Retrieves a <code>Reader</code> object.</p>
stripe-pp-cli terminal get-readers-reader - — <p>Creates a new <code>Configuration</code> object.</p>
stripe-pp-cli terminal post-configurations - — <p>Updates a new <code>Configuration</code> object.</p>
stripe-pp-cli terminal post-configurations-configuration - — <p>To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token from Stripe,...
stripe-pp-cli terminal post-connection-tokens - — <p>Creates a new <code>Location</code> object. For further details, including which address fields are required in...
stripe-pp-cli terminal post-locations - — <p>Updates a <code>Location</code> object by setting the values of the parameters passed. Any parameters not...
stripe-pp-cli terminal post-locations-location - — <p>Creates a new <code>OnboardingLink</code> object that contains a redirect_url used for onboarding onto Tap to Pay...
stripe-pp-cli terminal post-onboarding-links - — <p>Creates a new <code>Reader</code> object.</p>
stripe-pp-cli terminal post-readers - — <p>Updates a <code>Reader</code> object by setting the values of the parameters passed. Any parameters not provided...
stripe-pp-cli terminal post-readers-reader - — <p>Cancels the current reader action. See <a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platform...
stripe-pp-cli terminal post-readers-reader-cancel-action - — <p>Initiates an <a href='/docs/terminal/features/collect-inputs'>input collection flow</a> on a Reader to display...
stripe-pp-cli terminal post-readers-reader-collect-inputs - — <p>Initiates a payment flow on a Reader and updates the PaymentIntent with card details before manual confirmation....
stripe-pp-cli terminal post-readers-reader-collect-payment-method - — <p>Finalizes a payment on a Reader. See <a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platform=s...
stripe-pp-cli terminal post-readers-reader-confirm-payment-intent - — <p>Initiates a payment flow on a Reader. See <a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platf...
stripe-pp-cli terminal post-readers-reader-process-payment-intent - — <p>Initiates a SetupIntent flow on a Reader. See <a href='/docs/terminal/features/saving-payment-details/save-directl...
stripe-pp-cli terminal post-readers-reader-process-setup-intent - — <p>Initiates an in-person refund on a Reader. See <a href='/docs/terminal/payments/regional?integration-country=CA#re...
stripe-pp-cli terminal post-readers-reader-refund-payment - — <p>Sets the reader display to show <a href='/docs/terminal/features/display'>cart details</a>.</p>
stripe-pp-cli terminal post-readers-reader-set-reader-display
test-helpers — Manage test helpers
- — <p>Deletes a test clock.</p>
stripe-pp-cli test-helpers delete-test-clocks-test-clock - — <p>Returns a list of your test clocks.</p>
stripe-pp-cli test-helpers get-test-clocks - — <p>Retrieves a test clock.</p>
stripe-pp-cli test-helpers get-test-clocks-test-clock - — <p>Creates a test mode Confirmation Token server side for your integration tests.</p>
stripe-pp-cli test-helpers post-confirmation-tokens - — <p>Create an incoming testmode bank transfer</p>
stripe-pp-cli test-helpers post-customers-customer-fund-cash-balance - — <p>Create a test-mode authorization.</p>
stripe-pp-cli test-helpers post-issuing-authorizations - — <p>Capture a test-mode authorization.</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-capture - — <p>Expire a test-mode Authorization.</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-expire - — <p>Finalize the amount on an Authorization prior to capture, when the initial authorization was for an estimated...
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-finalize-amount - — <p>Respond to a fraud challenge on a testmode Issuing authorization, simulating either a confirmation of fraud or a...
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-fraud-challenges-respond - — <p>Increment a test-mode Authorization.</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-increment - — <p>Reverse a test-mode Authorization.</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-reverse - — <p>Updates the shipping status of the specified Issuing <code>Card</code> object to <code>delivered</code>.</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-deliver - — <p>Updates the shipping status of the specified Issuing <code>Card</code> object to <code>failure</code>.</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-fail - — <p>Updates the shipping status of the specified Issuing <code>Card</code> object to <code>returned</code>.</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-return - — <p>Updates the shipping status of the specified Issuing <code>Card</code> object to <code>shipped</code>.</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-ship - — <p>Updates the shipping status of the specified Issuing <code>Card</code> object to <code>submitted</code>. This...
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-submit - — <p>Updates the <code>status</code> of the specified testmode personalization design object to <code>active</code>.</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-activate - — <p>Updates the <code>status</code> of the specified testmode personalization design object to <code>inactive</code>.</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-deactivate - — <p>Updates the <code>status</code> of the specified testmode personalization design object to <code>rejected</code>.</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-reject - — <p>Allows the user to capture an arbitrary amount, also known as a forced capture.</p>
stripe-pp-cli test-helpers post-issuing-transactions-create-force-capture - — <p>Allows the user to refund an arbitrary amount, also known as a unlinked refund.</p>
stripe-pp-cli test-helpers post-issuing-transactions-create-unlinked-refund - — <p>Refund a test-mode Transaction.</p>
stripe-pp-cli test-helpers post-issuing-transactions-transaction-refund - — <p>Expire a refund with a status of <code>requires_action</code>.</p>
stripe-pp-cli test-helpers post-refunds-refund-expire - — <p>Presents a payment method on a simulated reader. Can be used to simulate accepting a payment, saving a card or...
stripe-pp-cli test-helpers post-terminal-readers-reader-present-payment-method - — <p>Use this endpoint to trigger a successful input collection on a simulated reader.</p>
stripe-pp-cli test-helpers post-terminal-readers-reader-succeed-input-collection - — <p>Use this endpoint to complete an input collection with a timeout error on a simulated reader.</p>
stripe-pp-cli test-helpers post-terminal-readers-reader-timeout-input-collection - — <p>Creates a new test clock that can be attached to new customers and quotes.</p>
stripe-pp-cli test-helpers post-test-clocks - — <p>Starts advancing a test clock to a specified time in the future. Advancement is done when status changes to...
stripe-pp-cli test-helpers post-test-clocks-test-clock-advance - — <p>Transitions a test mode created InboundTransfer to the <code>failed</code> status. The InboundTransfer must...
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-fail - — <p>Marks the test mode InboundTransfer object as returned and links the InboundTransfer to a ReceivedDebit. The...
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-return - — <p>Transitions a test mode created InboundTransfer to the <code>succeeded</code> status. The InboundTransfer must...
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-succeed - — <p>Updates a test mode created OutboundPayment with tracking details. The OutboundPayment must not be cancelable,...
stripe-pp-cli test-helpers post-treasury-outbound-payments-id - — <p>Transitions a test mode created OutboundPayment to the <code>failed</code> status. The OutboundPayment must...
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-fail - — <p>Transitions a test mode created OutboundPayment to the <code>posted</code> status. The OutboundPayment must...
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-post - — <p>Transitions a test mode created OutboundPayment to the <code>returned</code> status. The OutboundPayment must...
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-return - — <p>Updates a test mode created OutboundTransfer with tracking details. The OutboundTransfer must not be cancelable,...
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer - — <p>Transitions a test mode created OutboundTransfer to the <code>failed</code> status. The OutboundTransfer must...
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-fail - — <p>Transitions a test mode created OutboundTransfer to the <code>posted</code> status. The OutboundTransfer must...
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-post - — <p>Transitions a test mode created OutboundTransfer to the <code>returned</code> status. The OutboundTransfer must...
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-return - — <p>Use this endpoint to simulate a test mode ReceivedCredit initiated by a third party. In live mode, you can’t...
stripe-pp-cli test-helpers post-treasury-received-credits - — <p>Use this endpoint to simulate a test mode ReceivedDebit initiated by a third party. In live mode, you can’t...
stripe-pp-cli test-helpers post-treasury-received-debits
tokens — Manage tokens
- — <p>Retrieves the token with the given ID.</p>
stripe-pp-cli tokens get - — <p>Creates a single-use token that represents a bank account’s details. You can use this token with any v1 API...
stripe-pp-cli tokens post
topups — Manage topups
- — <p>Returns a list of top-ups.</p>
stripe-pp-cli topups get - — <p>Retrieves the details of a top-up that has previously been created. Supply the unique top-up ID that was returned...
stripe-pp-cli topups get-topup - — <p>Top up the balance of an account</p>
stripe-pp-cli topups post - — <p>Updates the metadata of a top-up. Other top-up details are not editable by design.</p>
stripe-pp-cli topups post-topup
transfers — Manage transfers
- — <p>Returns a list of existing transfers sent to connected accounts. The transfers are returned in sorted order, with...
stripe-pp-cli transfers get - — <p>Retrieves the details of an existing transfer. Supply the unique transfer ID from either a transfer creation...
stripe-pp-cli transfers get-transfer - — <p>To send funds from your Stripe account to a connected account, you create a new transfer object. Your <a...
stripe-pp-cli transfers post - — <p>Updates the specified transfer by setting the values of the parameters passed. Any parameters not provided will...
stripe-pp-cli transfers post-transfer
treasury — Manage treasury
- — <p>Returns a list of CreditReversals.</p>
stripe-pp-cli treasury get-credit-reversals - — <p>Retrieves the details of an existing CreditReversal by passing the unique CreditReversal ID from either the...
stripe-pp-cli treasury get-credit-reversals-credit-reversal - — <p>Returns a list of DebitReversals.</p>
stripe-pp-cli treasury get-debit-reversals - — <p>Retrieves a DebitReversal object.</p>
stripe-pp-cli treasury get-debit-reversals-debit-reversal - — <p>Returns a list of FinancialAccounts.</p>
stripe-pp-cli treasury get-financial-accounts - — <p>Retrieves the details of a FinancialAccount.</p>
stripe-pp-cli treasury get-financial-accounts-financial-account - — <p>Retrieves Features information associated with the FinancialAccount.</p>
stripe-pp-cli treasury get-financial-accounts-financial-account-features - — <p>Returns a list of InboundTransfers sent from the specified FinancialAccount.</p>
stripe-pp-cli treasury get-inbound-transfers - — <p>Retrieves the details of an existing InboundTransfer.</p>
stripe-pp-cli treasury get-inbound-transfers-id - — <p>Returns a list of OutboundPayments sent from the specified FinancialAccount.</p>
stripe-pp-cli treasury get-outbound-payments - — <p>Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the...
stripe-pp-cli treasury get-outbound-payments-id - — <p>Returns a list of OutboundTransfers sent from the specified FinancialAccount.</p>
stripe-pp-cli treasury get-outbound-transfers - — <p>Retrieves the details of an existing OutboundTransfer by passing the unique OutboundTransfer ID from either the...
stripe-pp-cli treasury get-outbound-transfers-outbound-transfer - — <p>Returns a list of ReceivedCredits.</p>
stripe-pp-cli treasury get-received-credits - — <p>Retrieves the details of an existing ReceivedCredit by passing the unique ReceivedCredit ID from the...
stripe-pp-cli treasury get-received-credits-id - — <p>Returns a list of ReceivedDebits.</p>
stripe-pp-cli treasury get-received-debits - — <p>Retrieves the details of an existing ReceivedDebit by passing the unique ReceivedDebit ID from the ReceivedDebit...
stripe-pp-cli treasury get-received-debits-id - — <p>Retrieves a list of TransactionEntry objects.</p>
stripe-pp-cli treasury get-transaction-entries - — <p>Retrieves a TransactionEntry object.</p>
stripe-pp-cli treasury get-transaction-entries-id - — <p>Retrieves a list of Transaction objects.</p>
stripe-pp-cli treasury get-transactions - — <p>Retrieves the details of an existing Transaction.</p>
stripe-pp-cli treasury get-transactions-id - — <p>Reverses a ReceivedCredit and creates a CreditReversal object.</p>
stripe-pp-cli treasury post-credit-reversals - — <p>Reverses a ReceivedDebit and creates a DebitReversal object.</p>
stripe-pp-cli treasury post-debit-reversals - — <p>Creates a new FinancialAccount. Each connected account can have up to three FinancialAccounts by default.</p>
stripe-pp-cli treasury post-financial-accounts - — <p>Updates the details of a FinancialAccount.</p>
stripe-pp-cli treasury post-financial-accounts-financial-account - — <p>Closes a FinancialAccount. A FinancialAccount can only be closed if it has a zero balance, has no pending...
stripe-pp-cli treasury post-financial-accounts-financial-account-close - — <p>Updates the Features associated with a FinancialAccount.</p>
stripe-pp-cli treasury post-financial-accounts-financial-account-features - — <p>Creates an InboundTransfer.</p>
stripe-pp-cli treasury post-inbound-transfers - — <p>Cancels an InboundTransfer.</p>
stripe-pp-cli treasury post-inbound-transfers-inbound-transfer-cancel - — <p>Creates an OutboundPayment.</p>
stripe-pp-cli treasury post-outbound-payments - — <p>Cancel an OutboundPayment.</p>
stripe-pp-cli treasury post-outbound-payments-id-cancel - — <p>Creates an OutboundTransfer.</p>
stripe-pp-cli treasury post-outbound-transfers - — <p>An OutboundTransfer can be canceled if the funds have not yet been paid out.</p>
stripe-pp-cli treasury post-outbound-transfers-outbound-transfer-cancel
webhook-endpoints — Manage webhook endpoints
- — <p>You can also delete webhook endpoints via the <a href='https://dashboard.stripe.com/account/webhooks'>webhook...
stripe-pp-cli webhook-endpoints delete - — <p>Returns a list of your webhook endpoints.</p>
stripe-pp-cli webhook-endpoints get - — <p>Retrieves the webhook endpoint with the given ID.</p>
stripe-pp-cli webhook-endpoints get-webhookendpoints - — <p>A webhook endpoint must have a <code>url</code> and a list of <code>enabled_events</code>. You may optionally...
stripe-pp-cli webhook-endpoints post - — <p>Updates the webhook endpoint. You may edit the <code>url</code>, the list of <code>enabled_events</code>, and the...
stripe-pp-cli webhook-endpoints post-webhookendpoints
account — 管理账户
- — <p>获取账户详情。</p>
stripe-pp-cli account
account-links — 管理账户链接
- — <p>创建AccountLink对象,包含平台可重定向用户至的一次性Stripe URL...</p>
stripe-pp-cli account-links
account-sessions — 管理账户会话
- — <p>创建AccountSession对象,包含平台可在前端使用的一次性令牌...</p>
stripe-pp-cli account-sessions
accounts — 管理账户
- — <p>通过<a href='/connect'>Connect</a>,您可以删除管理的账户。</p> <p>测试环境账户可被删除...</p>
stripe-pp-cli accounts delete - — <p>返回通过<a href='/docs/connect'>Connect</a>连接到平台的账户列表。如果您不是...</p>
stripe-pp-cli accounts get - — <p>获取账户详情。</p>
stripe-pp-cli accounts get-account - — <p>通过<a href='/docs/connect'>Connect</a>,您可以为用户创建Stripe账户。为此,您需要...</p>
stripe-pp-cli accounts post - — <p>通过传递参数更新<a href='/connect/accounts'>关联账户</a>。任何未传递的参数将保持不变...</p>
stripe-pp-cli accounts post-account
apple-pay — 管理Apple Pay
- — <p>删除Apple Pay域名。</p>
stripe-pp-cli apple-pay delete-domains-domain - — <p>列出Apple Pay域名。</p>
stripe-pp-cli apple-pay get-domains - — <p>获取Apple Pay域名详情。</p>
stripe-pp-cli apple-pay get-domains-domain - — <p>创建Apple Pay域名。</p>
stripe-pp-cli apple-pay post-domains
application-fees — 管理应用费用
- — <p>返回您之前收取的应用费用列表。费用按创建时间倒序排列...</p>
stripe-pp-cli application-fees get - — <p>获取您账户收取的应用费用详情。返回的信息与...</p>
stripe-pp-cli application-fees get-id
apps — 管理应用
- — <p>列出指定范围内存储的所有密钥。</p>
stripe-pp-cli apps get-secrets - — <p>按名称和范围在密钥存储中查找密钥。</p>
stripe-pp-cli apps get-secrets-find - — <p>在密钥存储中创建或替换密钥。</p>
stripe-pp-cli apps post-secrets - — <p>按名称和范围从密钥存储中删除密钥。</p>
stripe-pp-cli apps post-secrets-delete
balance — 管理余额
- — <p>基于请求使用的认证信息获取当前账户余额。对于...</p>
stripe-pp-cli balance
balance-settings — 管理余额设置
- — <p>获取指定关联账户的余额设置。相关指南:<a href='/connect/authentication'>发起...</a></p>
stripe-pp-cli balance-settings get - — <p>更新指定关联账户的余额设置。相关指南:<a href='/connect/authentication'>发起...</a></p>
stripe-pp-cli balance-settings post
balance-transactions — 管理余额交易
- — <p>返回对Stripe账户余额有贡献的交易列表(如收费、转账等...</p>
stripe-pp-cli balance-transactions get - — <p>获取指定ID的余额交易详情。</p> <p>注意:此端点之前使用的路径...</p>
stripe-pp-cli balance-transactions get-id
billing — 管理账单
- — <p>列出账单的活跃和非活跃警报</p>
stripe-pp-cli billing get-alerts - — <p>根据ID获取账单警报详情</p>
stripe-pp-cli billing get-alerts-id - — <p>获取客户的信用余额摘要。</p>
stripe-pp-cli billing get-credit-balance-summary - — <p>获取信用余额交易列表。</p>
stripe-pp-cli billing get-credit-balance-transactions - — <p>获取信用余额交易详情。</p>
stripe-pp-cli billing get-credit-balance-transactions-id - — <p>获取信用授予列表。</p>
stripe-pp-cli billing get-credit-grants - — <p>获取信用授予详情。</p>
stripe-pp-cli billing get-credit-grants-id - — <p>获取账单计量器列表。</p>
stripe-pp-cli billing get-meters - — <p>根据ID获取账单计量器详情。</p>
stripe-pp-cli billing get-meters-id - — <p>获取账单计量器事件摘要列表。</p>
stripe-pp-cli billing get-meters-id-event-summaries - — <p>创建账单警报</p>
stripe-pp-cli billing post-alerts - — <p>重新激活此警报,允许其再次触发。</p>
stripe-pp-cli billing post-alerts-id-activate - — <p>归档此警报,将其从列表视图和API中移除。此操作不可逆。</p>
stripe-pp-cli billing post-alerts-id-archive - — <p>停用此警报,阻止其触发。</p>
stripe-pp-cli billing post-alerts-id-deactivate - — <p>创建信用授予。</p>
stripe-pp-cli billing post-credit-grants - — <p>更新信用授予。</p>
stripe-pp-cli billing post-credit-grants-id - — <p>使信用授予过期。</p>
stripe-pp-cli billing post-credit-grants-id-expire - — <p>作废信用授予。</p>
stripe-pp-cli billing post-credit-grants-id-void - — <p>创建账单计量器事件调整。</p>
stripe-pp-cli billing post-meter-event-adjustments - — <p>创建账单计量器事件。</p>
stripe-pp-cli billing post-meter-events - — <p>创建账单计量器。</p>
stripe-pp-cli billing post-meters - — <p>更新账单计量器。</p>
stripe-pp-cli billing post-meters-id - — <p>当计量器被停用后,将不再接受此计量器的事件。您无法将...</p>
stripe-pp-cli billing post-meters-id-deactivate - — <p>当计量器被重新激活后,可接受此计量器的事件,且您可以将计量器关联到价格。</p>
stripe-pp-cli billing post-meters-id-reactivate
billing-portal — 管理账单门户
- — <p>返回描述客户门户功能的配置列表。</p>
stripe-pp-cli billing-portal get-configurations - — <p>获取描述客户门户功能的配置详情。</p>
stripe-pp-cli billing-portal get-configurations-configuration - — <p>创建描述PortalSession功能和行为的配置</p>
stripe-pp-cli billing-portal post-configurations - — <p>更新描述客户门户功能的配置。</p>
stripe-pp-cli billing-portal post-configurations-configuration - — <p>创建客户门户会话。</p>
stripe-pp-cli billing-portal post-sessions
charges — 管理收费
- — <p>返回您之前创建的收费列表。收费按创建时间倒序排列,最新的...</p>
stripe-pp-cli charges get - — <p>获取之前创建的收费详情。提供创建收费时返回的唯一收费ID...</p>
stripe-pp-cli charges get-charge - — <p>使用Stripe的<a...搜索您之前创建的收费</p>
stripe-pp-cli charges get-search - — <p>此方法不再推荐——使用<a href='/docs/api/payment_intents'>Payment Intents API</a>来...</p>
stripe-pp-cli charges post - — <p>通过传递参数更新指定收费。任何未提供的参数将保持不变...</p>
stripe-pp-cli charges post-charge
checkout — 管理结账
- — <p>返回Checkout会话列表。</p>
stripe-pp-cli checkout get-sessions - — <p>获取Checkout会话对象详情。</p>
stripe-pp-cli checkout get-sessions-session - — <p>获取Checkout会话时,可包含<strong>line_items</strong>属性,包含...</p>
stripe-pp-cli checkout get-sessions-session-line-items - — <p>创建Checkout会话对象。</p>
stripe-pp-cli checkout post-sessions - — <p>更新Checkout会话对象。</p> <p>相关指南:<a href='/payments/advanced/dynamic-updates'>动态...</a></p>
stripe-pp-cli checkout post-sessions-session - — <p>当Checkout会话处于<code>open</code>状态时可将其过期。</p> <p>过期后...</p>
stripe-pp-cli checkout post-sessions-session-expire
climate — 管理气候相关服务
- — <p>列出所有Climate订单对象。订单按创建时间倒序排列,最新创建的...</p>
stripe-pp-cli climate get-orders - — <p>获取指定ID的Climate订单对象详情。</p>
stripe-pp-cli climate get-orders-order - — <p>列出所有可用的Climate产品对象。</p>
stripe-pp-cli climate get-products - — <p>获取指定ID的Climate产品详情。</p>
stripe-pp-cli climate get-products-product - — <p>列出所有可用的Climate供应商对象。</p>
stripe-pp-cli climate get-suppliers - — <p>获取Climate供应商对象详情。</p>
stripe-pp-cli climate get-suppliers-supplier - — <p>为指定Climate产品创建Climate订单对象。订单将在创建后立即处理...</p>
stripe-pp-cli climate post-orders - — <p>通过传递参数更新指定订单。</p>
stripe-pp-cli climate post-orders-order - — <p>取消Climate订单。您可在创建后24小时内取消订单。Stripe将退还预订...</p>
stripe-pp-cli climate post-orders-order-cancel
confirmation-tokens — 管理确认令牌
- — <p>获取已存在的ConfirmationToken对象</p>
stripe-pp-cli confirmation-tokens <confirmation_token>
country-specs — 管理国家规范
- — <p>列出API中可用的所有国家规范对象。</p>
stripe-pp-cli country-specs get - — <p>返回指定国家代码的国家规范。</p>
stripe-pp-cli country-specs get-country
coupons — 管理优惠券
- — <p>您可通过<a href='https://dashboard.stripe.com/coupons'>优惠券管理</a>页面删除优惠券...</p>
stripe-pp-cli coupons delete - — <p>返回您的优惠券列表。</p>
stripe-pp-cli coupons get - — <p>获取指定ID的优惠券详情。</p>
stripe-pp-cli coupons get-coupon - — <p>您可通过<a href='https://dashboard.stripe.com/coupons'>优惠券管理</a>页面轻松创建优惠券...</p>
stripe-pp-cli coupons post - — <p>更新优惠券的元数据。其他优惠券详情(货币、有效期、折扣金额)按设计不可修改...</p>
stripe-pp-cli coupons post-coupon
credit-notes — 管理信用票据
- — <p>返回信用票据列表。</p>
stripe-pp-cli credit-notes get - — <p>获取指定标识符的信用票据对象详情。</p>
stripe-pp-cli credit-notes get-id - — <p>在创建信用票据前获取预览。</p>
stripe-pp-cli credit-notes get-preview - — <p>获取信用票据预览时,将包含<strong>lines</strong>属性,包含前...</p>
stripe-pp-cli credit-notes get-preview-lines - — <p>开具信用票据以调整已完成发票的金额。信用票据将首先减少发票的...</p>
stripe-pp-cli credit-notes post - — <p>更新已存在的信用票据。</p>
stripe-pp-cli credit-notes post-id
customer-sessions — 管理客户会话
- — <p>创建CustomerSession对象,包含前端可使用的一次性客户端密钥...</p>
stripe-pp-cli customer-sessions
customers — 管理客户
- — <p>永久删除客户。此操作不可逆。同时将立即取消客户的所有活跃订阅...</p>
stripe-pp-cli customers delete - — <p>返回您的客户列表。客户按创建时间倒序排列,最新的...</p>
stripe-pp-cli customers get - — <p>获取客户对象详情。</p>
stripe-pp-cli customers get-customer - — <p>使用Stripe的<a...搜索您之前创建的客户</p>
stripe-pp-cli customers get-search - — <p>创建新客户对象。</p>
stripe-pp-cli customers post - — <p>通过传递参数更新指定客户。任何未提供的参数将保持不变...</p>
stripe-pp-cli customers post-customer
disputes — 管理争议
- — <p>返回您的争议列表。</p>
stripe-pp-cli disputes get - — <p>获取指定ID的争议详情。</p>
stripe-pp-cli disputes get-dispute - — <p>当收到争议时,联系客户始终是最佳第一步。如果无效,您可以...</p>
stripe-pp-cli disputes post
entitlements — 管理权益
- — <p>获取客户的活跃权益列表</p>
stripe-pp-cli entitlements get-active - — <p>获取活跃权益详情</p>
stripe-pp-cli entitlements get-active-id - — <p>获取功能列表</p>
stripe-pp-cli entitlements get-features - — <p>获取功能详情</p>
stripe-pp-cli entitlements get-features-id - — <p>创建功能</p>
stripe-pp-cli entitlements post-features - — <p>更新功能的元数据或永久停用它。</p>
stripe-pp-cli entitlements post-features-id
ephemeral-keys — 管理临时密钥
- — <p>使指定资源的短期API密钥失效。</p>
stripe-pp-cli ephemeral-keys delete-key - — <p>为指定资源创建短期API密钥。</p>
stripe-pp-cli ephemeral-keys post
events — 管理事件
- — <p>列出事件,最长可回溯30天。每个事件数据根据创建时的Stripe API版本渲染...</p>
stripe-pp-cli events get - — <p>获取过去30天内创建的事件详情。提供事件的唯一标识符...</p>
stripe-pp-cli events get-id
exchange-rates — 管理汇率
- — <p>[已弃用]<code>ExchangeRate</code>API已弃用。请使用<a...</p>
stripe-pp-cli exchange-rates get - — <p>[已弃用]<code>ExchangeRate</code>API已弃用。请使用<a...</p>
stripe-pp-cli exchange-rates get-rate-id
file-links — 管理文件链接
- — <p>返回文件链接列表。</p>
stripe-pp-cli file-links get - — <p>获取指定ID的文件链接详情。</p>
stripe-pp-cli file-links get-link - — <p>创建新文件链接对象。</p>
stripe-pp-cli file-links post - — <p>更新已存在的文件链接对象。过期链接无法再更新。</p>
stripe-pp-cli file-links post-link
files — 管理文件
- — <p>返回您账户可访问的文件列表。Stripe按创建时间排序并返回文件...</p>
stripe-pp-cli files get - — <p>获取已存在文件对象的详情。提供唯一文件ID后,Stripe将返回...</p>
stripe-pp-cli files get-file - — <p>要向Stripe上传文件,您需要发送<code>multipart/form-data</code>类型的请求。包含文件...</p>
stripe-pp-cli files post
financial-connections — 管理金融连接
- — <p>返回Financial Connections<code>Account</code>对象列表。</p>
stripe-pp-cli financial-connections get-accounts - — <p>获取Financial Connections<code>Account</code>的详情。</p>
stripe-pp-cli financial-connections get-accounts-account - — <p>列出指定<code>Account</code>的所有所有者</p>
stripe-pp-cli financial-connections get-accounts-account-owners - — <p>获取Financial Connections<code>Session</code>的详情</p>
stripe-pp-cli financial-connections get-sessions-session - — <p>返回Financial Connections<code>Transaction</code>对象列表。</p>
stripe-pp-cli financial-connections get-transactions - — <p>获取Financial Connections<code>Transaction</code>的详情</p>
stripe-pp-cli financial-connections get-transactions-transaction - — <p>禁用您对Financial Connections<code>Account</code>的访问权限。您将无法再访问数据...</p>
stripe-pp-cli financial-connections post-accounts-account-disconnect - — <p>刷新与Financial Connections<code>Account</code>关联的数据。</p>
stripe-pp-cli financial-connections post-accounts-account-refresh - — <p>订阅与Financial Connections<code>Account</code>关联的数据定期刷新。当...</p>
stripe-pp-cli financial-connections post-accounts-account-subscribe - — <p>取消订阅与Financial Connections<code>Account</code>关联的数据定期刷新。</p>
stripe-pp-cli financial-connections post-accounts-account-unsubscribe - — <p>要启动Financial Connections授权流程,创建<code>Session</code>。会话的...</p>
stripe-pp-cli financial-connections post-sessions
forwarding — 管理转发
- — <p>列出所有ForwardingRequest对象。</p>
stripe-pp-cli forwarding get-requests - — <p>获取ForwardingRequest对象详情。</p>
stripe-pp-cli forwarding get-requests-id - — <p>创建ForwardingRequest对象。</p>
stripe-pp-cli forwarding post-requests
identity — 管理身份验证
- — <p>列出所有验证报告。</p>
stripe-pp-cli identity get-verification-reports - — <p>获取已存在的VerificationReport详情</p>
stripe-pp-cli identity get-verification-reports-report - — <p>返回VerificationSessions列表</p>
stripe-pp-cli identity get-verification-sessions - — <p>获取之前创建的VerificationSession详情。</p> <p>当会话状态为...</p>
stripe-pp-cli identity get-verification-sessions-session - — <p>创建VerificationSession对象。</p> <p>创建VerificationSession后,显示验证...</p>
stripe-pp-cli identity post-verification-sessions - — <p>更新VerificationSession对象。</p> <p>当会话状态为<code>requires_input</code>时,您可以使用...</p>
stripe-pp-cli identity post-verification-sessions-session - — <p>当VerificationSession对象处于<code>requires_input</code>状态时可取消它...</p>
stripe-pp-cli identity post-verification-sessions-session-cancel - — <p>编辑VerificationSession以从Stripe中移除所有收集的信息。这将编辑...</p>
stripe-pp-cli identity post-verification-sessions-session-redact
invoice-payments — 管理发票支付
- — <p>获取发票时,可包含payments属性,包含前几个相关项...</p>
stripe-pp-cli invoice-payments get - — <p>获取指定ID的发票支付详情。</p>
stripe-pp-cli invoice-payments get-invoicepayments
invoice-rendering-templates — 管理发票渲染模板
- — <p>列出所有模板,按创建时间排序,最新创建的模板排在最前面。</p>
stripe-pp-cli invoice-rendering-templates get - — <p>获取指定ID的发票渲染模板详情。默认返回模板的最新版本...</p>
stripe-pp-cli invoice-rendering-templates get-template
invoiceitems — 管理发票项目
- — <p>删除发票项目,将其从发票中移除。仅当发票项目未被...</p>
stripe-pp-cli invoiceitems delete - — <p>返回您的发票项目列表。发票项目按创建时间倒序排列,最新的...</p>
stripe-pp-cli invoiceitems get - — <p>获取指定ID的发票项目详情。</p>
stripe-pp-cli invoiceitems get-invoiceitem - — <p>创建将添加到草稿发票的项目(每张发票最多250个项目)。如果未指定发票,...</p>
stripe-pp-cli invoiceitems post - — <p>更新即将开具的发票上的发票项目金额或描述。仅当发票项目处于...</p>
stripe-pp-cli invoiceitems post-invoiceitem
invoices — 管理发票
- — <p>永久删除一次性发票草稿。此操作不可逆。尝试删除已不再是...</p>
stripe-pp-cli invoices delete - — <p>您可以列出所有发票,或列出指定客户的发票。发票按创建时间排序...</p>
stripe-pp-cli invoices get - — <p>获取指定ID的发票详情。</p>
stripe-pp-cli invoices get-invoice - — <p>使用Stripe的<a...搜索您之前创建的发票</p>
stripe-pp-cli invoices get-search - — <p>此端点为指定客户创建草稿发票。发票将保持草稿状态,直到您<a...</p>
stripe-pp-cli invoices post - — <p>您可随时预览订阅或订阅计划的即将开具发票。这将显示...</p>
stripe-pp-cli invoices post-create-preview - — <p>草稿发票可完全编辑。一旦发票<a href='/docs/billing/invoices/workflow#finalized'>完成...</p>
stripe-pp-cli invoices post-invoice
issuing — 管理发卡
- — <p>返回Issuing<code>Authorization</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-authorizations - — <p>获取Issuing<code>Authorization</code>对象详情。</p>
stripe-pp-cli issuing get-authorizations-authorization - — <p>返回Issuing<code>Cardholder</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-cardholders - — <p>获取Issuing<code>Cardholder</code>对象详情。</p>
stripe-pp-cli issuing get-cardholders-cardholder - — <p>返回Issuing<code>Card</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-cards - — <p>获取Issuing<code>Card</code>对象详情。</p>
stripe-pp-cli issuing get-cards-card - — <p>返回Issuing<code>Dispute</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-disputes - — <p>获取Issuing<code>Dispute</code>对象详情。</p>
stripe-pp-cli issuing get-disputes-dispute - — <p>返回个性化设计对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-personalization-designs - — <p>获取个性化设计对象详情。</p>
stripe-pp-cli issuing get-personalization-designs-personalization-design - — <p>返回物理捆绑包对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-physical-bundles - — <p>获取物理捆绑包对象详情。</p>
stripe-pp-cli issuing get-physical-bundles-physical-bundle - — <p>列出指定卡片的所有Issuing<code>Token</code>对象。</p>
stripe-pp-cli issuing get-tokens - — <p>获取Issuing<code>Token</code>对象详情。</p>
stripe-pp-cli issuing get-tokens-token - — <p>返回Issuing<code>Transaction</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli issuing get-transactions - — <p>获取Issuing<code>Transaction</code>对象详情。</p>
stripe-pp-cli issuing get-transactions-transaction - — <p>通过传递参数更新指定Issuing<code>Authorization</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli issuing post-authorizations-authorization - — <p>[已弃用] 批准待处理的Issuing<code>Authorization</code>对象。此请求应在...</p>
stripe-pp-cli issuing post-authorizations-authorization-approve - — <p>[已弃用] 拒绝待处理的Issuing<code>Authorization</code>对象。此请求应在...</p>
stripe-pp-cli issuing post-authorizations-authorization-decline - — <p>创建可发卡的新Issuing<code>Cardholder</code>对象。</p>
stripe-pp-cli issuing post-cardholders - — <p>通过传递参数更新指定Issuing<code>Cardholder</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli issuing post-cardholders-cardholder - — <p>创建Issuing<code>Card</code>对象。</p>
stripe-pp-cli issuing post-cards - — <p>通过传递参数更新指定Issuing<code>Card</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli issuing post-cards-card - — <p>创建Issuing<code>Dispute</code>对象。<code>evidence</code>中的个别证据项...</p>
stripe-pp-cli issuing post-disputes - — <p>通过传递参数更新指定Issuing<code>Dispute</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli issuing post-disputes-dispute - — <p>向卡网络提交Issuing<code>Dispute</code>。Stripe将验证所需的所有证据字段...</p>
stripe-pp-cli issuing post-disputes-dispute-submit - — <p>创建个性化设计对象。</p>
stripe-pp-cli issuing post-personalization-designs - — <p>更新卡片个性化对象。</p>
stripe-pp-cli issuing post-personalization-designs-personalization-design - — <p>尝试将指定Issuing<code>Token</code>对象更新为指定状态。</p>
stripe-pp-cli issuing post-tokens-token - — <p>通过传递参数更新指定Issuing<code>Transaction</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli issuing post-transactions-transaction
mandates — 管理授权书
- — <p>获取授权书对象详情。</p>
stripe-pp-cli mandates
payment-attempt-records — 管理支付尝试记录
- — <p>列出附加到指定支付记录的所有支付尝试记录。</p>
stripe-pp-cli payment-attempt-records get - — <p>获取指定ID的支付尝试记录详情</p>
stripe-pp-cli payment-attempt-records get-id
payment-intents — 管理支付意向
- — <p>返回PaymentIntents列表。</p>
stripe-pp-cli payment-intents get - — <p>获取之前创建的PaymentIntent详情。</p> <p>您可以获取...</p>
stripe-pp-cli payment-intents get-intent - — <p>使用Stripe的<a...搜索您之前创建的PaymentIntents</p>
stripe-pp-cli payment-intents get-search - — <p>创建PaymentIntent对象。</p> <p>创建PaymentIntent后,关联支付方式并<a...</p>
stripe-pp-cli payment-intents post - — <p>在不确认的情况下更新PaymentIntent对象的属性。</p> <p>根据您更新的属性...</p>
stripe-pp-cli payment-intents post-intent
payment-links — 管理支付链接
- — <p>返回您的支付链接列表。</p>
stripe-pp-cli payment-links get - — <p>获取支付链接详情。</p>
stripe-pp-cli payment-links get-paymentlinks - — <p>创建支付链接。</p>
stripe-pp-cli payment-links post - — <p>更新支付链接。</p>
stripe-pp-cli payment-links post-paymentlinks
payment-method-configurations — 管理支付方式配置
- — <p>列出支付方式配置</p>
stripe-pp-cli payment-method-configurations get - — <p>获取支付方式配置详情</p>
stripe-pp-cli payment-method-configurations get-configuration - — <p>创建支付方式配置</p>
stripe-pp-cli payment-method-configurations post - — <p>更新支付方式配置</p>
stripe-pp-cli payment-method-configurations post-configuration
payment-method-domains — 管理支付方式域名
- — <p>列出已存在的支付方式域名详情。</p>
stripe-pp-cli payment-method-domains get - — <p>获取已存在的支付方式域名详情。</p>
stripe-pp-cli payment-method-domains get-paymentmethoddomains - — <p>创建支付方式域名。</p>
stripe-pp-cli payment-method-domains post - — <p>更新已存在的支付方式域名。</p>
stripe-pp-cli payment-method-domains post-paymentmethoddomains
payment-methods — 管理支付方式
- — <p>返回所有PaymentMethods列表。</p>
stripe-pp-cli payment-methods get - — <p>获取附加到Stripe账户的PaymentMethod对象详情。要获取附加到客户的支付方式...</p>
stripe-pp-cli payment-methods get-paymentmethods - — <p>创建PaymentMethod对象。阅读<a href='/docs/stripe-js/reference#stripe-create-payment-method'>Stripe.j...</a></p>
stripe-pp-cli payment-methods post - — <p>更新PaymentMethod对象。PaymentMethod必须附加到客户才能更新。</p>
stripe-pp-cli payment-methods post-paymentmethods
payment-records — 管理支付记录
- — <p>获取指定ID的支付记录详情</p>
stripe-pp-cli payment-records get-id - — <p>报告新的支付记录。您可在初始化时报告支付记录,并在后续报告更新...</p>
stripe-pp-cli payment-records post-report-payment
payouts — 管理付款
- — <p>返回已发送到第三方银行账户的付款列表,或Stripe发送给您的付款列表。付款按创建时间排序...</p>
stripe-pp-cli payouts get - — <p>获取已存在的付款详情。提供付款创建请求或...</p>
stripe-pp-cli payouts get-payout - — <p>要将资金发送到您自己的银行账户,创建新的付款对象。您的<a href='#balance'>Stripe余额</a>...</p>
stripe-pp-cli payouts post - — <p>通过传递参数更新指定付款。我们不会更改您未传递的参数...</p>
stripe-pp-cli payouts post-payout
plans — 管理计划
- — <p>删除计划意味着无法添加新订阅者。现有订阅者不受影响。</p>
stripe-pp-cli plans delete - — <p>返回您的计划列表。</p>
stripe-pp-cli plans get - — <p>获取指定ID的计划详情。</p>
stripe-pp-cli plans get-plan - — <p>您现在可以使用<a href='#prices'>Prices API</a>更灵活地建模订阅。它取代了Plans...</p>
stripe-pp-cli plans post - — <p>通过传递参数更新指定计划。任何未提供的参数将保持不变...</p>
stripe-pp-cli plans post-plan
prices — 管理价格
- — <p>返回您的活跃价格列表,不包含<a href='/docs/products-prices/pricing-models#inline-pricing'>内联...</p>
stripe-pp-cli prices get - — <p>获取指定ID的价格详情。</p>
stripe-pp-cli prices get-price - — <p>使用Stripe的<a...搜索您之前创建的价格</p>
stripe-pp-cli prices get-search - — <p>为已存在的<a...创建新的<a href='https://docs.stripe.com/api/prices'>Price</a></p>
stripe-pp-cli prices post - — <p>通过传递参数更新指定价格。任何未提供的参数将保持不变...</p>
stripe-pp-cli prices post-price
products — 管理产品
- — <p>删除产品。仅当产品没有关联价格时才能删除。此外...</p>
stripe-pp-cli products delete-id - — <p>返回您的产品列表。产品按创建时间倒序排列,最新的...</p>
stripe-pp-cli products get - — <p>获取已存在产品的详情。提供产品创建请求或...</p>
stripe-pp-cli products get-id - — <p>使用Stripe的<a...搜索您之前创建的产品</p>
stripe-pp-cli products get-search - — <p>创建新产品对象。</p>
stripe-pp-cli products post - — <p>通过传递参数更新指定产品。任何未提供的参数将保持不变...</p>
stripe-pp-cli products post-id
promotion-codes — 管理促销代码
- — <p>返回您的促销代码列表。</p>
stripe-pp-cli promotion-codes get - — <p>获取指定ID的促销代码详情。要通过客户可见的代码获取促销代码...</p>
stripe-pp-cli promotion-codes get-promotioncodes - — <p>促销代码指向底层促销活动。您可选择将代码限制为特定客户...</p>
stripe-pp-cli promotion-codes post - — <p>通过传递参数更新指定促销代码。大多数字段按设计不可修改...</p>
stripe-pp-cli promotion-codes post-promotioncodes
quotes — 管理报价
- — <p>返回您的报价列表。</p>
stripe-pp-cli quotes get - — <p>获取指定ID的报价详情。</p>
stripe-pp-cli quotes get-quote - — <p>报价为客户建模价格和服务。<code>header</code>的默认选项...</p>
stripe-pp-cli quotes post - — <p>报价为客户建模价格和服务。</p>
stripe-pp-cli quotes post-quote
radar — 管理Radar
- — <p>删除<code>ValueListItem</code>对象,将其从父值列表中移除。</p>
stripe-pp-cli radar delete-value-list-items-item - — <p>删除<code>ValueList</code>对象,同时删除值列表中包含的所有项。要删除...</p>
stripe-pp-cli radar delete-value-lists-value-list - — <p>返回早期欺诈警告列表。</p>
stripe-pp-cli radar get-early-fraud-warnings - — <p>获取之前创建的早期欺诈警告详情。</p> <p>请参考<a...</p>
stripe-pp-cli radar get-early-fraud-warnings-early-fraud-warning - — <p>返回<code>ValueListItem</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli radar get-value-list-items - — <p>获取<code>ValueListItem</code>对象详情。</p>
stripe-pp-cli radar get-value-list-items-item - — <p>返回<code>ValueList</code>对象列表。对象按创建时间倒序排列...</p>
stripe-pp-cli radar get-value-lists - — <p>获取<code>ValueList</code>对象详情。</p>
stripe-pp-cli radar get-value-lists-value-list - — <p>在将支付发送到外部处理器之前,向Stripe请求Radar API欺诈风险评分...</p>
stripe-pp-cli radar post-payment-evaluations - — <p>创建新的<code>ValueListItem</code>对象,将其添加到指定的父值列表中。</p>
stripe-pp-cli radar post-value-list-items - — <p>创建新的<code>ValueList</code>对象,可在规则中引用。</p>
stripe-pp-cli radar post-value-lists - — <p>通过传递参数更新<code>ValueList</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli radar post-value-lists-value-list
refunds — 管理退款
- — <p>返回您创建的所有退款列表。我们按创建时间倒序排列退款,最新的...</p>
stripe-pp-cli refunds get - — <p>获取已存在的退款详情。</p>
stripe-pp-cli refunds get-refund - — <p>创建新退款时,必须指定要创建退款的Charge或PaymentIntent对象。</p>...</p>
stripe-pp-cli refunds post - — <p>通过传递参数更新指定退款。任何您未传递的参数将保持不变...</p>
stripe-pp-cli refunds post-refund
reporting — 管理报告
- — <p>返回报告运行列表,最新的排在最前面。</p>
stripe-pp-cli reporting get-report-runs - — <p>获取已存在的报告运行详情。</p>
stripe-pp-cli reporting get-report-runs-report-run - — <p>返回报告类型的完整列表。</p>
stripe-pp-cli reporting get-report-types - — <p>获取报告类型详情。(某些报告类型需要<a...</p>
stripe-pp-cli reporting get-report-types-report-type - — <p>创建新对象并开始运行报告。(某些报告类型需要<a...</p>
stripe-pp-cli reporting post-report-runs
reviews — 管理审核
- — <p>返回<code>open</code>设置为<code>true</code>的<code>Review</code>对象列表。对象按创建时间排序...</p>
stripe-pp-cli reviews get - — <p>获取<code>Review</code>对象详情。</p>
stripe-pp-cli reviews get-review
setup-attempts — 管理设置尝试
- — <p>返回与指定SetupIntent关联的SetupAttempts列表。</p>
stripe-pp-cli setup-attempts
setup-intents — 管理设置意向
- — <p>返回SetupIntents列表。</p>
stripe-pp-cli setup-intents get - — <p>获取之前创建的SetupIntent详情。</p> <p>客户端可使用...</p>
stripe-pp-cli setup-intents get-intent - — <p>创建SetupIntent对象。</p> <p>创建SetupIntent后,关联支付方式并<a...</p>
stripe-pp-cli setup-intents post - — <p>更新SetupIntent对象。</p>
stripe-pp-cli setup-intents post-intent
shipping-rates — 管理运费
- — <p>返回您的运费列表。</p>
stripe-pp-cli shipping-rates get - — <p>返回指定ID的运费对象详情。</p>
stripe-pp-cli shipping-rates get-token - — <p>创建新运费对象。</p>
stripe-pp-cli shipping-rates post - — <p>更新已存在的运费对象。</p>
stripe-pp-cli shipping-rates post-token
sigma — 管理Sigma
- — <p>返回定时查询运行列表。</p>
stripe-pp-cli sigma get-scheduled-query-runs - — <p>获取定时查询运行详情。</p>
stripe-pp-cli sigma get-scheduled-query-runs-scheduled-query-run
sources — 管理来源
- — <p>获取已存在的来源对象详情。提供来源创建请求返回的唯一来源ID,Stripe将...</p>
stripe-pp-cli sources get - — <p>创建新来源对象。</p>
stripe-pp-cli sources post - — <p>通过传递参数更新指定来源。任何未提供的参数将保持不变...</p>
stripe-pp-cli sources post-source
subscription-items — 管理订阅项目
- — <p>从订阅中删除项目。从订阅中移除订阅项目不会取消订阅...</p>
stripe-pp-cli subscription-items delete-item - — <p>返回指定订阅的订阅项目列表。</p>
stripe-pp-cli subscription-items get - — <p>获取指定ID的订阅项目详情。</p>
stripe-pp-cli subscription-items get-item - — <p>向已存在的订阅添加新项目。现有项目不会被更改或替换。</p>
stripe-pp-cli subscription-items post - — <p>更新当前订阅中项目的计划或数量。</p>
stripe-pp-cli subscription-items post-item
subscription-schedules — 管理订阅计划
- — <p>返回您的订阅计划列表。</p>
stripe-pp-cli subscription-schedules get - — <p>获取已存在的订阅计划详情。您只需提供唯一的订阅...</p>
stripe-pp-cli subscription-schedules get-schedule - — <p>创建新订阅计划对象。每个客户最多可拥有500个活跃或计划中的订阅。</p>
stripe-pp-cli subscription-schedules post - — <p>更新已存在的订阅计划。</p>
stripe-pp-cli subscription-schedules post-schedule
subscriptions — 管理订阅
- — <p>立即取消客户的订阅。客户将不再被收取订阅费用...</p>
stripe-pp-cli subscriptions delete-exposed-id - — <p>默认情况下,返回未取消的订阅列表。要列出已取消的订阅...</p>
stripe-pp-cli subscriptions get - — <p>获取指定ID的订阅详情。</p>
stripe-pp-cli subscriptions get-exposed-id - — <p>使用Stripe的<a...搜索您之前创建的订阅</p>
stripe-pp-cli subscriptions get-search - — <p>在已存在的客户上创建新订阅。每个客户最多可拥有500个活跃或计划中的...</p>
stripe-pp-cli subscriptions post - — <p>更新已存在的订阅以匹配指定参数。更改价格或数量时,我们...</p>
stripe-pp-cli subscriptions post-exposed-id
tax — 管理税务
- — <p>按PaymentIntent ID查找税务关联对象。</p>
stripe-pp-cli tax get-associations-find - — <p>获取Tax<code>Calculation</code>对象详情,如果计算未过期。</p>
stripe-pp-cli tax get-calculations-calculation - — <p>获取税务计算的行项目集合,如果计算未过期。</p>
stripe-pp-cli tax get-calculations-calculation-line-items - — <p>返回Tax<code>Registration</code>对象列表。</p>
stripe-pp-cli tax get-registrations - — <p>返回Tax<code>Registration</code>对象详情。</p>
stripe-pp-cli tax get-registrations-id - — <p>获取商家的Tax<code>Settings</code>详情。</p>
stripe-pp-cli tax get-settings - — <p>获取Tax<code>Transaction</code>对象详情。</p>
stripe-pp-cli tax get-transactions-transaction - — <p>获取已提交独立交易的行项目集合。</p>
stripe-pp-cli tax get-transactions-transaction-line-items - — <p>根据输入计算税务并返回Tax<code>Calculation</code>对象。</p>
stripe-pp-cli tax post-calculations - — <p>创建新的Tax<code>Registration</code>对象。</p>
stripe-pp-cli tax post-registrations - — <p>更新已存在的Tax<code>Registration</code>对象。</p> <p>注册完成后无法删除...</p>
stripe-pp-cli tax post-registrations-id - — <p>更新税务计算中使用的Tax<code>Settings</code>参数。所有参数均可编辑,但无...</p>
stripe-pp-cli tax post-settings - — <p>根据计算创建税务交易,如果计算未过期。计算将在90天后过期...</p>
stripe-pp-cli tax post-transactions-create-from-calculation - — <p>部分或完全撤销之前创建的<code>Transaction</code>。</p>
stripe-pp-cli tax post-transactions-create-reversal
tax-codes — 管理税务代码
- — <p><a href='https://stripe.com/docs/tax/tax-categories'>所有可用税务代码</a>的列表,可添加到产品中...</p>
stripe-pp-cli tax-codes get - — <p>获取已存在的税务代码详情。提供唯一税务代码ID,Stripe将返回...</p>
stripe-pp-cli tax-codes get-id
tax-ids — 管理税务ID
- — <p>删除已存在的账户或客户<code>tax_id</code>对象。</p>
stripe-pp-cli tax-ids delete-id - — <p>返回税务ID列表。</p>
stripe-pp-cli tax-ids get - — <p>获取账户或客户<code>tax_id</code>对象详情。</p>
stripe-pp-cli tax-ids get-id - — <p>创建新的账户或客户<code>tax_id</code>对象。</p>
stripe-pp-cli tax-ids post
tax-rates — 管理税率
- — <p>返回您的税率列表。税率按创建时间倒序排列,最新创建的...</p>
stripe-pp-cli tax-rates get - — <p>获取指定ID的税率详情</p>
stripe-pp-cli tax-rates get-taxrates - — <p>创建新税率。</p>
stripe-pp-cli tax-rates post - — <p>更新已存在的税率。</p>
stripe-pp-cli tax-rates post-taxrates
terminal — 管理终端
- — <p>删除<code>Configuration</code>对象。</p>
stripe-pp-cli terminal delete-configurations-configuration - — <p>删除<code>Location</code>对象。</p>
stripe-pp-cli terminal delete-locations-location - — <p>删除<code>Reader</code>对象。</p>
stripe-pp-cli terminal delete-readers-reader - — <p>返回<code>Configuration</code>对象列表。</p>
stripe-pp-cli terminal get-configurations - — <p>获取<code>Configuration</code>对象详情。</p>
stripe-pp-cli terminal get-configurations-configuration - — <p>返回<code>Location</code>对象列表。</p>
stripe-pp-cli terminal get-locations - — <p>获取<code>Location</code>对象详情。</p>
stripe-pp-cli terminal get-locations-location - — <p>返回<code>Reader</code>对象列表。</p>
stripe-pp-cli terminal get-readers - — <p>获取<code>Reader</code>对象详情。</p>
stripe-pp-cli terminal get-readers-reader - — <p>创建新的<code>Configuration</code>对象。</p>
stripe-pp-cli terminal post-configurations - — <p>更新新的<code>Configuration</code>对象。</p>
stripe-pp-cli terminal post-configurations-configuration - — <p>要连接到读卡器,Stripe Terminal SDK需要从Stripe获取短期连接令牌...</p>
stripe-pp-cli terminal post-connection-tokens - — <p>创建新的<code>Location</code>对象。更多详情,包括所需的地址字段...</p>
stripe-pp-cli terminal post-locations - — <p>通过传递参数更新<code>Location</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli terminal post-locations-location - — <p>创建新的<code>OnboardingLink</code>对象,包含用于Tap to Pay入职的重定向URL...</p>
stripe-pp-cli terminal post-onboarding-links - — <p>创建新的<code>Reader</code>对象。</p>
stripe-pp-cli terminal post-readers - — <p>通过传递参数更新<code>Reader</code>对象。任何未提供的参数将保持不变...</p>
stripe-pp-cli terminal post-readers-reader - — <p>取消当前读卡器操作。请参阅<a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platform...'></p>
stripe-pp-cli terminal post-readers-reader-cancel-action - — <p>在读卡器上启动<a href='/docs/terminal/features/collect-inputs'>输入收集流程</a>以显示...</p>
stripe-pp-cli terminal post-readers-reader-collect-inputs - — <p>在读卡器上启动支付流程,并在手动确认前使用卡片详情更新PaymentIntent...</p>
stripe-pp-cli terminal post-readers-reader-collect-payment-method - — <p>在读卡器上完成支付。请参阅<a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platform=s...'></p>
stripe-pp-cli terminal post-readers-reader-confirm-payment-intent - — <p>在读卡器上启动支付流程。请参阅<a href='/docs/terminal/payments/collect-card-payment?terminal-sdk-platf...'></p>
stripe-pp-cli terminal post-readers-reader-process-payment-intent - — <p>在读卡器上启动SetupIntent流程。请参阅<a href='/docs/terminal/features/saving-payment-details/save-directl...'></p>
stripe-pp-cli terminal post-readers-reader-process-setup-intent - — <p>在读卡器上启动线下退款。请参阅<a href='/docs/terminal/payments/regional?integration-country=CA#re...'></p>
stripe-pp-cli terminal post-readers-reader-refund-payment - — <p>设置读卡器显示以显示<a href='/docs/terminal/features/display'>购物车详情</a>。</p>
stripe-pp-cli terminal post-readers-reader-set-reader-display
test-helpers — 管理测试辅助工具
- — <p>删除测试时钟。</p>
stripe-pp-cli test-helpers delete-test-clocks-test-clock - — <p>返回您的测试时钟列表。</p>
stripe-pp-cli test-helpers get-test-clocks - — <p>获取测试时钟详情。</p>
stripe-pp-cli test-helpers get-test-clocks-test-clock - — <p>为您的集成测试在服务器端创建测试模式的确认令牌。</p>
stripe-pp-cli test-helpers post-confirmation-tokens - — <p>创建测试环境的银行转账入金</p>
stripe-pp-cli test-helpers post-customers-customer-fund-cash-balance - — <p>创建测试模式的授权。</p>
stripe-pp-cli test-helpers post-issuing-authorizations - — <p>捕获测试模式的授权。</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-capture - — <p>使测试模式的授权过期。</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-expire - — <p>在捕获前确定授权金额,当初始授权为估算金额时...</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-finalize-amount - — <p>响应测试环境Issuing授权的欺诈挑战,模拟欺诈确认或...</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-fraud-challenges-respond - — <p>增加测试模式的授权金额。</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-increment - — <p>撤销测试模式的授权。</p>
stripe-pp-cli test-helpers post-issuing-authorizations-authorization-reverse - — <p>将指定Issuing<code>Card</code>对象的运输状态更新为<code>delivered</code>。</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-deliver - — <p>将指定Issuing<code>Card</code>对象的运输状态更新为<code>failure</code>。</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-fail - — <p>将指定Issuing<code>Card</code>对象的运输状态更新为<code>returned</code>。</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-return - — <p>将指定Issuing<code>Card</code>对象的运输状态更新为<code>shipped</code>。</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-ship - — <p>将指定Issuing<code>Card</code>对象的运输状态更新为<code>submitted</code>。这...</p>
stripe-pp-cli test-helpers post-issuing-cards-card-shipping-submit - — <p>将指定测试环境个性化设计对象的<code>status</code>更新为<code>active</code>。</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-activate - — <p>将指定测试环境个性化设计对象的<code>status</code>更新为<code>inactive</code>。</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-deactivate - — <p>将指定测试环境个性化设计对象的<code>status</code>更新为<code>rejected</code>。</p>
stripe-pp-cli test-helpers post-issuing-personalization-designs-personalization-design-reject - — <p>允许用户捕获任意金额,也称为强制捕获。</p>
stripe-pp-cli test-helpers post-issuing-transactions-create-force-capture - — <p>允许用户退款任意金额,也称为无关联退款。</p>
stripe-pp-cli test-helpers post-issuing-transactions-create-unlinked-refund - — <p>退款测试模式的交易。</p>
stripe-pp-cli test-helpers post-issuing-transactions-transaction-refund - — <p>使状态为<code>requires_action</code>的退款过期。</p>
stripe-pp-cli test-helpers post-refunds-refund-expire - — <p>在模拟读卡器上呈现支付方式。可用于模拟接受支付、保存卡片或...</p>
stripe-pp-cli test-helpers post-terminal-readers-reader-present-payment-method - — <p>使用此端点在模拟读卡器上触发成功的输入收集。</p>
stripe-pp-cli test-helpers post-terminal-readers-reader-succeed-input-collection - — <p>使用此端点在模拟读卡器上完成输入收集并返回超时错误。</p>
stripe-pp-cli test-helpers post-terminal-readers-reader-timeout-input-collection - — <p>创建可附加到新客户和报价的新测试时钟。</p>
stripe-pp-cli test-helpers post-test-clocks - — <p>开始将测试时钟推进到未来指定时间。当状态变为...</p>
stripe-pp-cli test-helpers post-test-clocks-test-clock-advance - — <p>将测试环境创建的InboundTransfer转换为<code>failed</code>状态。InboundTransfer必须...</p>
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-fail - — <p>将测试环境InboundTransfer对象标记为已退回,并将InboundTransfer关联到ReceivedDebit。...</p>
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-return - — <p>将测试环境创建的InboundTransfer转换为<code>succeeded</code>状态。InboundTransfer必须...</p>
stripe-pp-cli test-helpers post-treasury-inbound-transfers-id-succeed - — <p>使用跟踪详情更新测试环境创建的OutboundPayment。OutboundPayment必须不可取消...</p>
stripe-pp-cli test-helpers post-treasury-outbound-payments-id - — <p>将测试环境创建的OutboundPayment转换为<code>failed</code>状态。OutboundPayment必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-fail - — <p>将测试环境创建的OutboundPayment转换为<code>posted</code>状态。OutboundPayment必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-post - — <p>将测试环境创建的OutboundPayment转换为<code>returned</code>状态。OutboundPayment必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-payments-id-return - — <p>使用跟踪详情更新测试环境创建的OutboundTransfer。OutboundTransfer必须不可取消...</p>
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer - — <p>将测试环境创建的OutboundTransfer转换为<code>failed</code>状态。OutboundTransfer必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-fail - — <p>将测试环境创建的OutboundTransfer转换为<code>posted</code>状态。OutboundTransfer必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-post - — <p>将测试环境创建的OutboundTransfer转换为<code>returned</code>状态。OutboundTransfer必须...</p>
stripe-pp-cli test-helpers post-treasury-outbound-transfers-outbound-transfer-return - — <p>使用此端点模拟第三方发起的测试环境ReceivedCredit。在生产环境中,您无法...</p>
stripe-pp-cli test-helpers post-treasury-received-credits - — <p>使用此端点模拟第三方发起的测试环境ReceivedDebit。在生产环境中,您无法...</p>
stripe-pp-cli test-helpers post-treasury-received-debits
tokens — 管理令牌
- — <p>获取指定ID的令牌详情。</p>
stripe-pp-cli tokens get - — <p>创建代表银行账户详情的一次性令牌。您可将此令牌用于任何v1 API...</p>
stripe-pp-cli tokens post
topups — 管理充值
- — <p>返回充值列表。</p>
stripe-pp-cli topups get - — <p>获取之前创建的充值详情。提供充值创建请求返回的唯一充值ID...</p>
stripe-pp-cli topups get-topup - — <p>为账户余额充值</p>
stripe-pp-cli topups post - — <p>更新充值的元数据。其他充值详情按设计不可编辑。</p>
stripe-pp-cli topups post-topup
transfers — 管理转账
- — <p>返回已发送到关联账户的转账列表。转账按创建时间排序...</p>
stripe-pp-cli transfers get - — <p>获取已存在的转账详情。提供转账创建请求或...</p>
stripe-pp-cli transfers get-transfer - — <p>要将资金从您的Stripe账户发送到关联账户,创建新的转账对象。您的<a...</p>
stripe-pp-cli transfers post - — <p>通过传递参数更新指定转账。任何未提供的参数将保持不变...</p>
stripe-pp-cli transfers post-transfer
treasury — 管理财务库
- — <p>返回CreditReversals列表。</p>
stripe-pp-cli treasury get-credit-reversals - — <p>通过传递CreditReversal创建时返回的唯一ID获取已存在的CreditReversal详情...</p>
stripe-pp-cli treasury get-credit-reversals-credit-reversal - — <p>返回DebitReversals列表。</p>
stripe-pp-cli treasury get-debit-reversals - — <p>获取DebitReversal对象详情。</p>
stripe-pp-cli treasury get-debit-reversals-debit-reversal - — <p>返回FinancialAccounts列表。</p>
stripe-pp-cli treasury get-financial-accounts - — <p>获取FinancialAccount详情。</p>
stripe-pp-cli treasury get-financial-accounts-financial-account - — <p>获取与FinancialAccount关联的功能信息。</p>
stripe-pp-cli treasury get-financial-accounts-financial-account-features - — <p>返回从指定FinancialAccount发送的InboundTransfers列表。</p>
stripe-pp-cli treasury get-inbound-transfers - — <p>获取已存在的InboundTransfer详情。</p>
stripe-pp-cli treasury get-inbound-transfers-id - — <p>返回从指定FinancialAccount发送的OutboundPayments列表。</p>
stripe-pp-cli treasury get-outbound-payments - — <p>通过传递OutboundPayment创建时返回的唯一ID获取已存在的OutboundPayment详情...</p>
stripe-pp-cli treasury get-outbound-payments-id - — <p>返回从指定FinancialAccount发送的OutboundTransfers列表。</p>
stripe-pp-cli treasury get-outbound-transfers - — <p>通过传递OutboundTransfer创建时返回的唯一ID获取已存在的OutboundTransfer详情...</p>
stripe-pp-cli treasury get-outbound-transfers-outbound-transfer - — <p>返回ReceivedCredits列表。</p>
stripe-pp-cli treasury get-received-credits - — <p>通过传递ReceivedCredit创建时返回的唯一ID获取已存在的ReceivedCredit详情...</p>
stripe-pp-cli treasury get-received-credits-id - — <p>返回ReceivedDebits列表。</p>
stripe-pp-cli treasury get-received-debits - — <p>通过传递ReceivedDebit创建时返回的唯一ID获取已存在的ReceivedDebit详情...</p>
stripe-pp-cli treasury get-received-debits-id - — <p>返回TransactionEntry对象列表。</p>
stripe-pp-cli treasury get-transaction-entries - — <p>获取TransactionEntry对象详情。</p>
stripe-pp-cli treasury get-transaction-entries-id - — <p>返回Transaction对象列表。</p>
stripe-pp-cli treasury get-transactions - — <p>获取已存在的Transaction详情。</p>
stripe-pp-cli treasury get-transactions-id - — <p>撤销ReceivedCredit并创建CreditReversal对象。</p>
stripe-pp-cli treasury post-credit-reversals - — <p>撤销ReceivedDebit并创建DebitReversal对象。</p>
stripe-pp-cli treasury post-debit-reversals - — <p>创建新的FinancialAccount。每个关联账户默认最多可拥有三个FinancialAccount。</p>
stripe-pp-cli treasury post-financial-accounts - — <p>更新FinancialAccount详情。</p>
stripe-pp-cli treasury post-financial-accounts-financial-account - — <p>关闭FinancialAccount。仅当FinancialAccount余额为零且无待处理...</p>
stripe-pp-cli treasury post-financial-accounts-financial-account-close - — <p>更新与FinancialAccount关联的功能。</p>
stripe-pp-cli treasury post-financial-accounts-financial-account-features - — <p>创建InboundTransfer。</p>
stripe-pp-cli treasury post-inbound-transfers - — <p>取消InboundTransfer。</p>
stripe-pp-cli treasury post-inbound-transfers-inbound-transfer-cancel - — <p>创建OutboundPayment。</p>
stripe-pp-cli treasury post-outbound-payments - — <p>取消OutboundPayment。</p>
stripe-pp-cli treasury post-outbound-payments-id-cancel - — <p>创建OutboundTransfer。</p>
stripe-pp-cli treasury post-outbound-transfers - — <p>如果资金尚未支付,可取消OutboundTransfer。</p>
stripe-pp-cli treasury post-outbound-transfers-outbound-transfer-cancel
webhook-endpoints — 管理Webhook端点
- — <p>您也可通过<a href='https://dashboard.stripe.com/account/webhooks'>Webhook...</a>页面删除Webhook端点...</p>
stripe-pp-cli webhook-endpoints delete - — <p>返回您的Webhook端点列表。</p>
stripe-pp-cli webhook-endpoints get - — <p>获取指定ID的Webhook端点详情。</p>
stripe-pp-cli webhook-endpoints get-webhookendpoints - — <p>Webhook端点必须包含<code>url</code>和<code>enabled_events</code>列表。您可选择...</p>
stripe-pp-cli webhook-endpoints post - — <p>更新Webhook端点。您可编辑<code>url</code>、<code>enabled_events</code>列表和...</p>
stripe-pp-cli webhook-endpoints post-webhookendpoints
Finding the right command
查找合适的命令
When you know what you want to do but not which command does it, ask the CLI directly:
bash
stripe-pp-cli which "<capability in your own words>"which02--help当您知道要执行的操作但不知道对应命令时,可直接询问CLI:
bash
stripe-pp-cli which "<用您自己的语言描述功能>"which02--helpRecipes
使用示例
Find double-subscribed customers
查找重复订阅的客户
bash
stripe-pp-cli sql 'SELECT json_extract(s.data,"$.customer") AS cid, COUNT(*) AS subs FROM resources s WHERE s.resource_type="subscriptions" AND json_extract(s.data,"$.status")="active" GROUP BY cid HAVING subs > 1' --jsonAll Stripe data lives in the generic table; query JSON fields with json_extract.
resourcesbash
stripe-pp-cli sql 'SELECT json_extract(s.data,"$.customer") AS cid, COUNT(*) AS subs FROM resources s WHERE s.resource_type="subscriptions" AND json_extract(s.data,"$.status")="active" GROUP BY cid HAVING subs > 1' --json所有Stripe数据存储在通用的表中;使用json_extract查询JSON字段。
resourcesTop 10 customers with at-risk PM
支付方式存在风险的前10位客户
bash
stripe-pp-cli subs-at-risk --within 30d --limit 10 --json --select customer_email,mrr,card_expEmail these customers proactively before involuntary churn hits.
bash
stripe-pp-cli subs-at-risk --within 30d --limit 10 --json --select customer_email,mrr,card_exp主动向这些客户发送邮件,避免非自愿流失。
Replay missed events since last cron tick
重放自上次定时任务以来遗漏的事件
bash
stripe-pp-cli events-since --type 'invoice' --json --select id,type,created,data.object.idCursor-driven event tail — one-shot, agent-friendly, persists cursor between runs.
bash
stripe-pp-cli events-since --type 'invoice' --json --select id,type,created,data.object.id基于游标的事件追踪——一次性执行,适配Agent,在运行之间保存游标。
Reconcile this week's payouts
对账本周的付款
bash
stripe-pp-cli payout-reconcile --since 7d --csvJoins payout → balance_transactions → charges → customers; flags missing rows.
bash
stripe-pp-cli payout-reconcile --since 7d --csv关联付款→余额交易→收费→客户数据;标记缺失行。
Compact customer dossier for agent context
用于Agent上下文的精简客户档案
bash
stripe-pp-cli customer-360 alice@example.com --json --select customer.email,active_subscriptions,open_disputes,lifetime_spendUse --select to project deeply-nested fields; saves tokens vs full dossier.
bash
stripe-pp-cli customer-360 alice@example.com --json --select customer.email,active_subscriptions,open_disputes,lifetime_spend使用--select选择深层嵌套字段;与完整档案相比,节省令牌使用。
Auth Setup
认证设置
Authenticate by exporting (recommended) or running to persist it. Test-mode keys () and live-mode keys () are accepted; this v1 does NOT yet enforce a live-mode write guard, so audit any live invocation before running mutating commands.
STRIPE_SECRET_KEY=sk_test_...stripe-pp-cli auth set-token <key>sk_test_...sk_live_...Run to verify setup.
stripe-pp-cli doctor通过导出环境变量(推荐)或运行来持久化密钥进行认证。接受测试环境密钥()和生产环境密钥();当前v1版本尚未实现生产环境写入保护,因此在执行变更命令前请审核所有生产环境调用。
STRIPE_SECRET_KEY=sk_test_...stripe-pp-cli auth set-token <key>sk_test_...sk_live_...运行验证设置。
stripe-pp-cli doctorAgent Mode
Agent模式
Add to any command. Expands to: .
--agent--json --compact --no-input --no-color --yes-
Pipeable — JSON on stdout, errors on stderr
-
Filterable —keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:
--selectbashstripe-pp-cli account --agent --select id,name,status -
Previewable —shows the request without sending
--dry-run -
Offline-friendly — sync/search commands can use the local SQLite store when available
-
Non-interactive — never prompts, every input is a flag
-
Explicit retries — useonly when an already-existing create should count as success, and
--idempotentonly when a missing delete target should count as success--ignore-missing
在任何命令后添加参数。等效于:。
--agent--json --compact --no-input --no-color --yes-
可管道化 — 标准输出为JSON,错误输出到标准错误
-
可过滤 —保留字段子集。点路径可深入嵌套结构;数组可遍历元素。对于冗长的API,这是保持上下文精简的关键:
--selectbashstripe-pp-cli account --agent --select id,name,status -
可预览 —显示请求但不发送
--dry-run -
离线友好 — 同步/搜索命令在可用时可使用本地SQLite存储
-
非交互式 — 从不提示,所有输入均为标志参数
-
显式重试 — 仅当已存在的创建操作应视为成功时使用,仅当缺失的删除目标应视为成功时使用
--idempotent--ignore-missing
Response envelope
响应信封
Commands that read from the local store or the API wrap output in a provenance envelope:
json
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <data>
}Parse for data and to know whether it's live or local. A human-readable summary is printed to stderr only when stdout is a terminal — piped/agent consumers get pure JSON on stdout.
.results.meta.sourceN results (live)从本地存储或API读取数据的命令会将输出包装在来源信封中:
json
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <data>
}解析获取数据,表示数据来自生产环境还是本地存储。仅当标准输出为终端时,才会在标准错误中打印人类可读的摘要——管道/Agent消费者仅在标准输出获取纯JSON。
.results.meta.sourceN results (live)Agent Feedback
Agent反馈
When you (or the agent) notice something off about this CLI, record it:
stripe-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
stripe-pp-cli feedback --stdin < notes.txt
stripe-pp-cli feedback list --json --limit 10Entries are stored locally at . They are never POSTed unless is set AND either is passed or . Default behavior is local-only.
~/.stripe-pp-cli/feedback.jsonlSTRIPE_FEEDBACK_ENDPOINT--sendSTRIPE_FEEDBACK_AUTO_SEND=trueWrite what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
当您(或Agent)发现此CLI存在问题时,记录反馈:
stripe-pp-cli feedback "--since标志是包含性的,但文档说是排他性的"
stripe-pp-cli feedback --stdin < notes.txt
stripe-pp-cli feedback list --json --limit 10反馈条目存储在本地文件中。仅当设置了且传递了参数或设置了时,才会POST反馈。默认行为仅存储在本地。
~/.stripe-pp-cli/feedback.jsonlSTRIPE_FEEDBACK_ENDPOINT--sendSTRIPE_FEEDBACK_AUTO_SEND=true写下让您感到意外的内容,而非错误报告。简短、具体、单行:这是能带来改进的部分。
Output Delivery
输出交付
Every command accepts . The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
--deliver <sink>| Sink | Effect |
|---|---|
| Default; write to stdout only |
| Atomically write output to |
| POST the output body to the URL ( |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
每个命令都接受参数。输出将发送到指定的接收器,同时(或替代)发送到标准输出,因此Agent无需手动管道即可路由命令结果。支持三种接收器:
--deliver <sink>| 接收器 | 效果 |
|---|---|
| 默认;仅写入标准输出 |
| 原子性地将输出写入 |
| 将输出体POST到指定URL(当使用 |
未知格式将被拒绝,并返回结构化错误,列出支持的格式。Webhook失败将返回非零退出码,并在标准错误中记录URL和HTTP状态。
Named Profiles
命名配置文件
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
stripe-pp-cli profile save briefing --json
stripe-pp-cli --profile briefing account
stripe-pp-cli profile list --json
stripe-pp-cli profile show briefing
stripe-pp-cli profile delete briefing --yesExplicit flags always win over profile values; profile values win over defaults. lists all available profiles under so introspecting agents discover them at runtime.
agent-contextavailable_profiles配置文件是保存的一组标志值,可在多次调用中复用。当定时Agent每次运行都使用相同配置调用同一命令时使用——HeyGen的"Beacon"模式。
stripe-pp-cli profile save briefing --json
stripe-pp-cli --profile briefing account
stripe-pp-cli profile list --json
stripe-pp-cli profile show briefing
stripe-pp-cli profile delete briefing --yes显式标志始终优先于配置文件值;配置文件值优先于默认值。会在下列出所有可用配置文件,以便内省Agent在运行时发现它们。
agent-contextavailable_profilesExit Codes
退出码
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
| 代码 | 含义 |
|---|---|
| 0 | 成功 |
| 2 | 使用错误(参数错误) |
| 3 | 资源未找到 |
| 4 | 需要认证 |
| 5 | API错误(上游问题) |
| 7 | 速率限制(等待并重试) |
| 10 | 配置错误 |
Argument Parsing
参数解析
Parse :
$ARGUMENTS- Empty, , or
help→ show--helpoutputstripe-pp-cli --help - Starts with → ends with
install→ MCP installation; otherwise → see Prerequisites abovemcp - Anything else → Direct Use (execute as CLI command with )
--agent
解析:
$ARGUMENTS- 为空、或
help→ 显示--help输出stripe-pp-cli --help - 以开头 → 以
install结尾 → MCP安装;否则 → 请参阅上方前提条件mcp - 其他内容 → 直接使用(以标志执行CLI命令)
--agent
MCP Server Installation
MCP服务器安装
- Install the MCP server:
bash
go install github.com/mvanhorn/printing-press-library/library/payments/stripe/cmd/stripe-pp-mcp@latest - Register with Claude Code:
bash
claude mcp add stripe-pp-mcp -- stripe-pp-mcp - Verify:
claude mcp list
- 安装MCP服务器:
bash
go install github.com/mvanhorn/printing-press-library/library/payments/stripe/cmd/stripe-pp-mcp@latest - 注册到Claude Code:
bash
claude mcp add stripe-pp-mcp -- stripe-pp-mcp - 验证:
claude mcp list
Direct Use
直接使用
- Check if installed: If not found, offer to install (see Prerequisites at the top of this skill).
which stripe-pp-cli - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the flag:
--agentbashstripe-pp-cli <command> [subcommand] [args] --agent - If ambiguous, drill into subcommand help: .
stripe-pp-cli <command> --help
- 检查是否已安装:如果未找到,提供安装选项(请参阅本技能顶部的前提条件)。
which stripe-pp-cli - 将用户查询与上方独特功能和命令参考中的最佳命令匹配。
- 使用标志执行:
--agentbashstripe-pp-cli <command> [subcommand] [args] --agent - 如果存在歧义,查看子命令帮助:。
stripe-pp-cli <command> --help