Payment Intents
List payment intents for the provider
Retrieves a paginated list of all payment intents created by the authenticated provider. Supports pagination through limit and offset query parameters.
get/v1/sdk/payment-intents
Query parameters
limitnumber
Example:50
Maximum number of results
offsetnumber
Pagination offset
Response
Payment intents retrieved successfully
Example response
{
"paymentIntents": [
{
"amount": 4999,
"clientSecret": "pi_1a2b3c4d5e6f7g8h_secret_xxx",
"createdAt": "2025-10-11T10:30:00.000Z",
"currency": "usd",
"planRef": "pln_2b3c4d5e6f7g",
"processorPaymentId": "pi_1a2b3c4d5e6f7g8h",
"status": "succeeded"
}
],
"total": 1
}