Stripe - Get Payment Intents
Description
Section titled “Description”This module allows you to query Payment Intents in Stripe. You can get a specific one by ID or list multiple with filters.
Configuration
Section titled “Configuration”Required Credentials
Section titled “Required Credentials”- Secret Key: Stripe secret key
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Stripe credentials |
| payment_intent_id | string | No | Specific ID (pi_xxx) |
| customer_id | string | No | Filter by customer |
| created_gte | string | No | Created after (Unix timestamp) |
| created_lte | string | No | Created before (Unix timestamp) |
| limit | number | No | Results limit (default: 10) |
| starting_after | string | No | Last object ID for pagination |
Output
Section titled “Output”{ "success": true, "payment_intents": [...], "count": 10, "has_more": true, "message": "10 PaymentIntents obtenidos"}Payment Intent Fields
Section titled “Payment Intent Fields”id: Payment intent ID (pi_xxx)amount: Amount in centsamount_decimal: Amount in currency unitscurrency: Currencystatus: Current statuscustomer: Customer IDpayment_method: Payment method usedcreated: Creation datemetadata: Custom metadata
Usage Example
Section titled “Usage Example”Get by ID
Section titled “Get by ID”{ "payment_intent_id": "pi_3MtwBwLkdIwHu7ix28a3tqPa"}Customer payments
Section titled “Customer payments”{ "customer_id": "cus_NffrFeUfNV2Hib", "limit": 50}Payments from last day
Section titled “Payments from last day”{ "created_gte": "1704067200", "created_lte": "1704153600"}API Used
Section titled “API Used”- Endpoint:
GET /v1/payment_intents - Documentation: Stripe List Payment Intents
- The
amount_decimalfield is added for convenience (amount / 100) - Pagination uses cursor-based with
starting_after - Maximum limit per page is 100
Related Nodes
Section titled “Related Nodes”- StripeCreatePaymentIntent - Create new Payment Intents
- StripeCreateRefund - Create refunds for payments
- StripeGetCustomers - Get payment customer data