Get Sub-merchant
Retrieves information about a specific Sub merchant.
Live:
POST https://api.ezeebit.com/open/api/v1/subMerchant/query
UAT
POST https://dev-api.ezeebit.com/open/api/v1/subMerchant/query
Headers
Name
Type
Required
Value
Content-Type
string
Y
application/json
Ezeebit-Timestamp
long
Y
UnixTimestamp in milliseconds
Ezeebit-Nonce
string
Y
must be 32 digits
Ezeebit-Certificate-SN
string
Y
API key issued by Ezeebit Pay system
Ezeebit-Signature
string
Y
this should use SHA512, and be in upper case
Request Body
{
"subMerchantNum": "11121096"
}Form data
Name
Type
Required
Description
subMerchantNum
string
Y
The Sub-merchant Number of the Merchant, It can be obtained from the Store Sub-merchant of Merchant Portal
Response
{
"code": 200,
"msg": "success",
"data": {
"subMerchantNum": "11121096",
"name": "Puma_submerchant",
"addTime": 1738575003408,
"storeListOutList": [
{
"name": "Puma_store_1",
"merchantStoreNum": "635428442724"
},
{
"name": "Club 5",
"merchantStoreNum": "494874416644"
}
]
}
}{
"code": 10013,
"msg": "SubMerchant not found",
"data": null
}{
"code": 10001,
"msg": "Incorrect signature result",
"data": null
}Last updated