Skip to main content
Weavr API
Card payments

List card payment events

GET/card_payment_events

Returns a flat, chronological list of card payment events across one or more card payments. Each entry carries the event plus the parent CardPayment context (card, merchant, group).

Request

Available on
SandboxProduction

Header parameters

Query parameters

Responses

200OK

Success

Headers
Body
application/json
{}
CardPaymentEventListCardPaymentEventList · object · 3 fields
Response example
{  "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,      "cardPaymentId": "123456789",      "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"      }    }  ],  "count": 42,  "responseCount": 10}