POST
/
api
/
v1
/
service
/
recharge
/
initiate
curl --request POST \
  --url https://eazype.com/api/v1/service/recharge/initiate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "10",
  "clientRefId": "2337438",
  "mobile": "7880383325",
  "circle": "54",
  "operatorCode": "ATEL"
}'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Recharge successfully.",
  "data": {
    "clientRefId": "2345653347438",
    "txnId": 4751864,
    "operatorTxnId": "6794198934",
    "mobile": "8004007231",
    "orderId": "REC4087931046300320CC",
    "message": "Request is successfull!"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json · object

Response

200
application/json
OK

The response is of type object.