v1

latestOpenAPI 3.1.02026-07-2418049.3 KB

Get Multi-merchant Refund Status

This API is designed for checking the refund status of a transaction based on the order_id received after successful payment.

get/check-refund-status/{order_id}

Path parameters

order_idstring required

Headers

Authorizationstring

Response

201

statusboolean
messagestring

Example response

{
  "status": true,
  "message": "success",
  "data": {
    "orderId": "202309470620061311821887650932",
    "isMultivendorRefund": true,
    "refundPayload": [
      {
        "refundRequestId": "b2JxTEcyeDhEaw==",
        "ibanNumber": "KW91KFHO0000000000051010173254",
        "totalPaid": "10.000",
        "remainingLimit": 10,
        "merchantType": "vendor"
      }
    ],
    "multivendor_refund_end_point": "http://127.0.0.1:8000/api/v1/create-multivendor-refund"
  }
}