Get refund status

Environments

https://api.aplazo.net

Get Refund Status

get

Retrieves the status history of refunds for a specific cartId.

Path parameters
cartIdstringRequired

Identifier in the merchant POS for the order/transaction.

Example: f5bd63a7
Responses
200
Refund status history returned successfully.
application/json
get
GET /api/pos/loan/refund/{cartId} HTTP/1.1
Host: 
Accept: */*
200

Refund status history returned successfully.

[
  {
    "cartId": "f5bd63a7",
    "status": "REQUESTED",
    "refundDate": "2021-12-21T09:12:33.001Z"
  },
  {
    "cartId": "f5bd63a7",
    "status": "REFUNDED",
    "refundDate": "2021-12-21T09:12:33.001Z"
  }
]

Last updated

Was this helpful?