Get Store

Retrieves information about a specific Store.

Live:

POST https://api.ezeebit.com/open/api/v1/store/query

UAT:

POST https://dev-api.ezeebit.com/open/api/v1/store/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

{
  "storeNumber": "635428224"
}

Form data

Name
Type
Required
Description

storeNumer

string

Y

The Store Number of the Merchant, It can be obtained from the Store List of Merchant Portal or through the Get Merchant interface

Response

{
    "code": 200,
    "msg": "success",
    "data": {
        "storeNumber": "635428224",
        "storeName": "Puma_store_1",
        "physicalAddress": "Test",
        "phoneNumber": "1233",
        "createTime": 1738575084174,
        "feeAndTxName": "Test fee",
        "feeAndTxId": "14f86679624d48c3b8896b9cb0ac6e44",
        "status": "vaild",
        "subMerchantNum": "11121096",
        "subMerchantName": "Puma_submerchant"
    }
}

Last updated