Payments

Get the payments associated with a payment order

Note that a payment associated with a payment order may be pending (paymentStatusDetails.paymentStatus = PENDING) or rejected (paymentStatusDetails.paymentStatus = REJECTED).

get/api/v2/payments/local/payment-order/{paymentOrderUid}/payments

Path parameters

paymentOrderUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa

Payment order uid

Response

Successful operation

Example response

{
  "payments": [
    {
      "paymentUid": "44554455-4455-4455-4455-445544554455",
      "amount": {
        "currency": "GBP",
        "minorUnits": 123456
      },
      "reference": "Payment reference",
      "payeeUid": "55665566-5566-5566-5566-556655665566",
      "payeeAccountUid": "66776677-6677-6677-6677-667766776677"
    }
  ]
}