返回 Stripe
将 Knoon AI 与 Stripe 连接以自动化 AI 工作流。
List Stripe invoices, optionally filtered by customer, status, subscription, or collection method.
stripeDefaultListInvoices
测试版
内部
权限
没有可显示的项目。
可选权限
没有可显示的项目。
参数
| 名称 | 类型 | 描述 | 必填 |
|---|---|---|---|
| customerId | mustache | Optional Stripe customer ID. | 没有 |
| status | mustache | Optional invoice status (draft, open, paid, uncollectible, or void). | 没有 |
| subscriptionId | mustache | Optional Stripe subscription ID. | 没有 |
| collectionMethod | mustache | Optional collection method (charge_automatically or send_invoice). | 没有 |
| limit | mustache | Optional max number of records to return (1-100). Defaults to 10. | 没有 |
回报
| 名称 | 类型 | 描述 |
|---|---|---|
| id | string | Invoice ID. |
| status | string | Invoice status. |
| customerId | string | Stripe customer ID. |
| subscriptionId | string | Stripe subscription ID when available. |
| paymentIntentId | string | Payment intent ID when available. |
| collectionMethod | string | Invoice collection method. |
| amountDue | number | Amount due. |
| amountPaid | number | Amount paid. |
| amountRemaining | number | Amount remaining. |
| currency | string | Invoice currency. |
| hostedInvoiceUrl | string | Hosted invoice URL when available. |
| invoicePdf | string | Invoice PDF URL when available. |
| number | string | Invoice number. |
| dueDate | string | Invoice due date (ISO). |
| createdAt | string | Invoice creation time (ISO). |
| finalizedAt | string | Invoice finalization time (ISO) when available. |
| paidAt | string | Invoice paid time (ISO) when available. |
| voidedAt | string | Invoice voided time (ISO) when available. |