This document provides an overview of the Payment Gateway Dashboard API, including its endpoints, request/response formats, and usage guidelines.

Endpoints

  • /api/payment-gateway/transactions - Retrieve payment transactions
  • /api/payment-gateway/refunds - Process refunds
  • /api/payment-gateway/subscriptions - Manage subscription services

Usage Guidelines

Authentication

All requests must be authenticated using an API key. Include the Authorization header with the value Bearer <your_api_key>.

Request/Response Formats

All requests and responses are in JSON format.

Example Request

GET /api/payment-gateway/transactions
Authorization: Bearer <your_api_key>

Example Response

{
  "status": "success",
  "data": [
    {
      "id": "123456",
      "amount": 100.00,
      "currency": "USD",
      "status": "completed",
      "created_at": "2023-01-01T12:00:00Z"
    }
  ]
}

Images

Payment Gateway Dashboard

For more information on how to integrate the Payment Gateway into your application, please refer to our Integration Guide.