Check Balance

The Check Balance Endpoint is used to get the current balance of the merchant.

Service EndpointsCopied!

Endpoint

POST /api/check-balance

Request Header

Authorization: Bearer <your_jwt_token_here>

Content-Type: application/json

Request ParametersCopied!

Name

Type

Required?

Description

merchant_id

string

Yes

ID of the merchant

Response ParametersCopied!

Name

Type

Description

merchant_id

string

ID of the merchant

current_balance

string

Merchant’s current balance

currency

datetime

Currency of the balance

time

number

Timestamp when the balance was retrieved

error_code

string

Error code

message

string

Message

Sample RequestCopied!

{
  "merchant_id": "M00001"
}

Sample ResponseCopied!

{
  "merchant_id": "M00001",
  "current_balance": 1665.88,
  "currency": "USD",
  "time": "2025-03-15 18:06:15"
}