v1

latestSwagger 2.02026-07-13103251.8 KB
Refunding card payments

Get all refunds for a payment

Return refunds for a payment. The Authorisation token needs to be specified in the 'authorization' header as 'authorization: Bearer YOUR_API_KEY_HERE'

get/v1/payments/{paymentId}/refunds

Path parameters

paymentIdstring required

Response

OK

payment_idstring

Example response

{
  "payment_id": "hu20sqlact5260q2nanm0q8u93",
  "_links": {
    "self": {
      "href": "https://an.example.link/from/payment/platform",
      "method": "GET"
    },
    "payment": {
      "href": "https://an.example.link/from/payment/platform",
      "method": "GET"
    }
  },
  "_embedded": {
    "refunds": [
      {
        "refund_id": "act4c33g40j3edfmi8jknab84x",
        "created_date": "2017-01-10T16:52:07.855Z",
        "amount": 120,
        "_links": {
          "self": {
            "href": "https://an.example.link/from/payment/platform",
            "method": "GET"
          },
          "payment": {
            "href": "https://an.example.link/from/payment/platform",
            "method": "GET"
          }
        },
        "status": "success",
        "settlement_summary": {
          "settled_date": "2016-01-21"
        }
      }
    ]
  }
}