Skip to main content
GET
/
v1
/
payment-intents
List payment intents
curl --request GET \
  --url http://localhost:3001/v1/payment-intents
{
  "items": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "externalReference": "<string>",
      "source": {
        "amount": "<string>",
        "currency": "<string>"
      },
      "destination": {
        "amount": "<string>",
        "currency": "<string>"
      },
      "paymentType": "<string>",
      "paymentSubtype": "<string>",
      "stablecoin": "<string>",
      "chain": "<string>",
      "beneficiaryAccount": "<string>",
      "beneficiaryName": "<string>",
      "status": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Headers

authorization
string
Minimum string length: 1
x-organization-id
string
Minimum string length: 1

Query Parameters

limit
integer
default:25
required
Required range: 1 <= x <= 100
offset
integer
default:0
required
Required range: 0 <= x <= 9007199254740991
status
enum<string>
Available options:
initiated,
submitted,
pending,
sent,
completed,
failed,
returned,
reversed,
cancelled,
unknown
externalReference
string
Minimum string length: 1

Response

Default Response

items
PaymentIntentSnapshot ยท object[]
required
total
integer
required
limit
integer
required
offset
integer
required