v1
latestOpenAPI 3.0.02026-07-24103118224.7 KBCustomer
List all setup payment method requests for a customer
Returns every setup payment method request created for the given customer, sorted by most recent first. Each item includes the current status (pending, completed, failed, requires_3ds), the currency, timestamps, error details if the request failed, and the resulting paymentMethodId if the setup completed successfully.
get/api/customer/{customerEmail}/payment-methods/setup-requests
Path parameters
customerEmailstring required
Example:customer@example.com
Email address of the customer
Response
List of setup payment method requests for the customer, sorted by most recent first.
Example response
[
{
"id": "setup_pm_req_abc123",
"status": "completed",
"currency": "EUR",
"paymentMethodId": "cpm_xyz789"
}
]