Create Refund
Live:
POST https://api.ezeebit.com/open/api/v1/refund/create
UAT:
POST https://dev-api.ezeebit.com/open/api/v1/refund/create
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
{
"firstName": "dezzy",
"lastName": "yoyo",
"phoneNumber": "4483848",
"emailAddress" : "[email protected]",
"brandID": "43452",
"subMerchantNum": "9706541042",
"orderID" : "32536",
"currency" :"USDT",
"network" : "Ethereum",
"amount" : 50.00,
"txnHash" : "0xb9d1ba0709edca1619ea991804b74de",
"toAddress" : "90X389299jh4462838298"
}Form data
firstName
string
Y
First name of the customer
lastName
string
Y
Last name of the customer
phoneNumber
string
N
Phone number of the customer
emailAddress
string
Y
Email address of customer for further comminucation
brandID
string
Y
Merchant brand Id for payment
subMerchantNum
string
N
sub merchant ID
orderID
string
Y
Payment ID
currency
string
Y
Currency in which payment made
network
string
Y
Network in which payment done
amount
double
Y
Refund amount
txnHash
string
Y
Transaction hash of the payment
toAddress
string
Y
customer Address where funds get deposited
Response
{
"code": 200,
"msg": "success",
"data": true
}{
"code": 404,
"msg": "payment_not_found",
"data": true
}Last updated