Create Store
Sub-stores can be created according to merchants
Live:
POST https://api.ezeebit.com/open/api/v1/store/add
UAT:
POST https://dev-api.ezeebit.com/open/api/v1/store/add
Headers
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
{
"feeAndTaxId": "14f86679624d48c3b8896b9cb0ac6e4400",
"phoneNumber": "76637374",
"physicalAddress": "Test",
"storeName": "Test Header",
"subMerchantNum": "9706541042"
}Form data
storeName
string
Y
Name of the Store
physicalAddress
string
Y
Physical Address of the Store
phoneNumber
string
Y
Phone Number of the Store
feeAndTaxId
string
Y
Fee Group of the Store,Noted: You can get it by calling the Get Fee and Tax interface
subMerchantNum
string
N
Sub-merchant number of the Merchant Note: You will get this from merchant portal under Store>>Sub-merchant option from side bar
Response
{
"code": 200,
"msg": "success",
"data": true
}{
"code": 400,
"msg": "feeAndTaxId not found",
"data": null
}{
"code": 10011,
"msg": "Duplicate store name",
"data": null
}{
"code": 10001,
"msg": "Incorrect signature result",
"data": null{
"code": 10013,
"msg": "SubMerchant not found",
"data": null
}Last updated