Skip to main content
Weavr API
Card payments

List card payments

GET/card_payments

Returns the aggregated card payments for the logged-in identity. A CardPayment represents the full lifecycle of a card payment (authorization + settlements + optional reversal/expiry/refund/original credit) as a single business-level entity.

Request

Available on
SandboxProduction

Header parameters

Query parameters

Responses

200OK

Success

Headers
Body
application/json
{}
CardPaymentListCardPaymentList · object · 3 fields
Response example
{  "cardPayments": [    {      "id": "123456789",      "profileId": "10001",      "type": {},      "card": {        "id": "234567890",        "type": "managed_cards",        "mode": "prepaid",        "friendlyName": "Travel card",        "nameOnCard": "Alex Smith",        "cardBrand": "MASTERCARD",        "cardNumberFirstSix": "453201",        "cardNumberLastFour": "0366",        "linkedUserId": "987654321",        "parentManagedAccountId": "123456789"      },      "merchant": {        "id": "MID123456",        "name": "Coffee Corner",        "nameOther": "Coffee Corner Ltd",        "networkId": "NET123456",        "categoryCode": "5812",        "description": "Coffee shop",        "street": "1 High Street",        "city": "London",        "state": "Greater London",        "postalCode": "W1A 1AA",        "country": "GB",        "telephone": "+442079460000",        "url": "https://www.coffeecorner.example",        "contact": "[email protected]",        "reference": "ORD-20260803-0001",        "logoUrl": "https://www.coffeecorner.example/logo.png"      },      "displayAmount": {        "currency": "GBP",        "amount": 1250      },      "status": "SETTLEMENT_IN_PROGRESS",      "relatedCardPaymentId": "987654321",      "events": [        {          "id": "123456789",          "subtype": "sale_purchases",          "reversal": false,          "result": {},          "authorisationCategory": {},          "authForwardingDetails": {            "triggered": true,            "decisionOutcome": {},            "innovatorTimedOut": false          },          "declineReason": {},          "authRuleFailedReason": "string",          "cancellationReason": "Cancelled at the customer's request",          "transactionAmount": {            "currency": "GBP",            "amount": 1250          },          "billingAmount": {            "currency": "GBP",            "amount": 1250          },          "forex": {            "exchangeRate": {              "value": 1250,              "scale": 2            },            "padding": {              "currency": "GBP",              "amount": 1250            }          },          "userAmount": {            "currency": "GBP",            "amount": 1250          },          "userExchangeRate": {            "value": 1250,            "scale": 2          },          "authCode": "123456",          "fees": [            {              "id": "123456789",              "subtype": {},              "amount": {                "currency": "GBP",                "amount": 1250              }            }          ],          "timestamp": 1786118400000,          "processedTimestamp": 1786118401250        }      ],      "creationTimestamp": 1786118400000,      "lastUpdatedTimestamp": 1786118401250    }  ],  "count": 42,  "responseCount": 10}