crypto
GET /api/merchant/crypto-transfer/{wallet}
Note you have to pass the wallet id in your request
Headers
Name
Value
Description
Accept
application/json
CLIENT
client_key
The unique identifier for the client.
SECRET
generated_secret
The expected secret generated using your client key and secret key.
Body
{
"desc":"inward",
"amount":"1000",
"beneficiary_id": 3
}Response
{
"error": "Insufficient wallet balance."
}{
"message": "The desc field is required. (and 2 more errors)",
"errors": {
"desc": [
"The desc field is required."
],
"amount": [
"The amount field is required."
],
"beneficiary_id": [
"The beneficiary id field is required."
]
}
}Last updated