Balance inquiry

The address of the request

The name of the environment
URL

SandBox

POST https://api.supefina.tech/api/supefina/transactions/search-balance

Formal environment

POST https://api.supefina.net/api/supefina/transactions/search-balance

Request parameters

Key
Value

Content-Type

application/json

Request body

Variable name
Required
type
description

merId

Yes

String

Merchant ID Merchant ID acquisition path: Supefina Merchant Background - Merchant Management - Basic Information - Merchant ID

countryId

Yes

String

Country number

Reference: Dictionary table - country number

Mexico: MEX

nonceStr

Yes

String

Random strings The length cannot exceed 32 bits

Sample request

{
    "countryId": "MEX",
    "merId": "8501088932494545",
    "nonceStr": "D30FDC30597446FD95B792AC1E1A0AF5",
    "sign": "R9d1Enp0XUS5YMwv0EP$blm9mWTWwyoB"
}

Response parameters

Variable name
type
description

code

String

Response coding

msg

String

Response Information

data

Object

Response data

balance

BigDecimal

Merchant account balance

availableBalance

BigDecimal

The available balance of the merchant account

holdBal

BigDecimal

Merchant account hold amount

unsettleBal

BigDecimal

The unsettled amount of the merchant account

Sample response

{
    "code": "200",
    "msg": "success ",
    "data": {
        "balance": "40366.05",
        "availableBalance": "80545.71",
        "holdBal": "20008.02",
        "unsettleBal": "60187.68"
    }
}

Última actualización