YoboPay
  1. PaymentIntents
YoboPay
  • 接入说明
  • Introduction
  • Webhook接入
  • Webhook Introduction
  • Test Card
  • Embedded Checkout
  • Checkout
    • Create Session
      POST
    • Expire Session
      POST
    • Retrieve Session
      GET
  • PaymentIntents
    • Retrieve PaymentIntent
      GET
    • List all paymentIntent
      GET
  • Charges
    • List all charges
      GET
  • Customers
    • Create Customer
      POST
    • Update Customer
      POST
    • Retrieve Customer
      GET
  • Events
    • The Event object
    • Types of Events
    • Data Object
      • PaymentIntent
      • Charge
  • Refunds
    • Create Refund
      POST
    • List all refunds
      GET
  1. PaymentIntents

List all paymentIntent

GET
/v1/payment_intents

Request

Query Params
createdGt
integer 
optional
Minimum creation time to filter by (exclusive)
Example:
1744358762580
createdGte
integer 
optional
Minimum creation time to filter by (inclusive)
Example:
1744358762580
createdLt
integer 
optional
Maximum creation time to filter by (exclusive)
Example:
1744358762580
createdLte
integer 
optional
Maximum creation time to filter by (inclusive)
Example:
1744358762580
paymentIntentId
string 
optional
Unique identifier for the payment intent object
customerId
string 
optional
Only return paymentIntents for the customer specified by this customer ID.
limit
integer 
optional
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10
Example:
10

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/payment_intents?createdGt=1744358762580&createdGte=1744358762580&createdLt=1744358762580&createdLte=1744358762580&paymentIntentId&customerId&limit=10'

Responses

🟢200成功
application/json
Body
code
string 
required
msg
string 
required
data
object 
required
hasMore
boolean 
required
item
array[object (PaymentIntent) {13}] 
required
Example
{
    "code": "string",
    "msg": "string",
    "data": {
        "hasMore": true,
        "item": [
            {
                "paymentIntentId": "string",
                "clientReferenceId": "string",
                "currency": "string",
                "amount": 0,
                "type": "card",
                "paymentMethodId": "string",
                "paymentMethodOptions": {
                    "card": {
                        "setupFutureUsage": "on_session"
                    }
                },
                "customerId": "string",
                "created": 0,
                "confirmAt": 0,
                "canceledAt": 0,
                "status": "requires_payment_method",
                "amountRefunded": 0
            }
        ]
    }
}
Modified at 2025-06-26 04:40:17
Previous
Retrieve PaymentIntent
Next
List all charges
Built with