cURL
curl --request GET \ --url https://sandbox.api.hixbe.com/payment/payment_intents \ --header 'Authorization: Bearer <token>' \ --header 'Hixbe-Version: <hixbe-version>'
{ "object": "list", "data": [ { "id": "pi_1Hh1X2AbCdEf", "amount": 1500, "currency": "BDT", "status": "requires_payment_method", "client_secret": "cs_test_abc", "object": "payment_intent", "capture_method": "automatic", "customer": "cus_123", "payment_method": "pm_card_abc", "metadata": {}, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "charges": [ { "id": "ch_1Hh2Z3AbCdEf", "amount": 1500, "currency": "BDT", "status": "succeeded", "payment_method": "<string>", "receipt_url": "<string>", "created_at": "2023-11-07T05:31:56Z" } ] } ], "has_more": true, "next_cursor": "<string>" }
List PaymentIntents with optional filtering and pagination.
Use your secret API key. Example: Authorization: Bearer sk_test_xxx
Authorization: Bearer sk_test_xxx
API version header. Use '2026-01-01' for the latest version.
Max results to return
x <= 100
Cursor for pagination
List of PaymentIntents
"list"
Show child attributes
Was this page helpful?