v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
transfer

List completed payments

Fetch completed payments used to fund the transfer.

In most cases there should only be a single payment associated with the transfer. There are rare occasions that a transfer can be funded with multiple payment methods and when this occurs the first completed payment method would be used to calculate the fees provided on the quote.

get/v1/transfers/{transferId}/payments

Path parameters

transferIdinteger required

The transfer ID

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

Returns a list of completed payment objects.

idinteger

Payment ID

methodstring

The payment method used to pay for the transfer

pricingVariantstring nullable

The qualifier that allows to apply different pricing policy within the same payment method. Often the value might be the payment method itself

amountnumber

Transfer source amount

currencystring

Transfer source currency

timeCreatedstring date-time

Date of when payment was created

timeUpdatedstring date-time

Date of when payment was updated

Example response

[
  {
    "id": 50000000,
    "method": "BANK_TRANSFER",
    "amount": 1000,
    "currency": "GBP",
    "timeCreated": "2020-01-01T12:30:15.000Z",
    "timeUpdated": "2020-01-01T12:30:15.000Z"
  }
]