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. |