This API endpoint is designed to handle refund requests for payments made through our platform. Here's a quick guide on how to use it:

  • Endpoint: /en/api/payment/refund
  • Method: GET

Usage Guide

  1. Query Parameters:

    • order_id: The unique identifier for the order to be refunded.
    • amount: The amount to be refunded (optional, if not specified, the full amount will be refunded).
  2. Response Format:

    • status: The status of the refund request.
    • message: A brief message describing the status.

Example Request

GET /en/api/payment/refund?order_id=123456789&amount=100.00

Example Response

{
  "status": "success",
  "message": "Refund initiated successfully."
}

For more information, please visit our API Documentation.

Refund Process