Skip to main content
Weavr API
Card payments

Get a card payment

GET/card_payments/{id}

Returns the card payment identified by id, including its amount, merchant, current state, and related card details.

Read the card payments overview for the payment lifecycle and state transitions.

Request

Available on
SandboxProduction

Path parameters

Responses

200OK

Success

Headers
Body
application/json
{}
CardPaymentCardPayment · object · 11 fields
Response example
{  "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}