v1

latestOpenAPI 3.1.02026-07-26202027.9 KB
Payments

List payments

Returns a paginated list of payment intents for your organization. Supports filtering by recipient, batch, and reference.

get/payments

Query parameters

limitinteger

Maximum number of results to return (max 100, default 100).

offsetinteger

Number of results to skip for pagination (default 0).

recipientIdstring uuid

Filter payments by recipient ID.

batchIdstring uuid

Filter payments by the batch they were created in.

referenceIdstring

Filter payments by your own reference ID.

Response

A paginated list of payments.

Example response

{
  "data": [
    {
      "statusUpdates": [
        {
          "status": "processing"
        }
      ]
    }
  ]
}