Paygic Docs
  • Introduction
  • Create Token
  • Payment Page - Beta
  • UPI Intent
  • UPI Collect
  • Status and CallBack
  • Wordpress Plugin
  • Reseller
    • Onboard Merchant
    • Onboard Static Merchant
    • Payment APIs
  • Get Fee Data
  • Merchant Balance
Powered by GitBook
On this page

Merchant Balance

This API endpoint fetches the reseller merchant balance data

Merchant Balance API

Parameters

  • rid(string)

  • mid (string)

Endpoint - https://server.paygic.in/api/v2/reseller/getMerchantLimit

Method - POST

Request Headers

  • Content-Type: application/json

  • Token: Reseller Token


await axios.post(
      "https://server.paygic.in/api/v2/reseller/getMerchantLimit",
      {
        "rid": "string",     // Reseller ID (required)
        "mid": "string" // Reseller Merchant (required)
      }
    
    );
    
    //Response
     {
          "status": true,
          "statusCode": 200,
          "msg": "Merchant balance fetched successfully",
          "data": {
            "monthlyLimit": "string",
            "utilized": "string",
            "currentBalance": "string",
            "availableForSettlement": "string",
            "disputeAmount": "string"
          }
        }
        
        //error response
         {
            "status": false,
            "statusCode": 400,
            "msg": "Invalid Reseller ID or MID"
          }
          
PreviousGet Fee Data

Last updated 2 months ago