Skip to main content
POST
/
v1
/
service
/
recharge
/
initiate
Recharge Init
curl --request POST \
  --url https://base_url/v1/service/recharge/initiate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: text/plain' \
  --data '{
    "amount": "5",
    "clientRefId": "2345653347438",
    "mobile": "9876543210",
    "circle": "54",
    "operatorCode": "ATEL"
}'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Recharge successfully.",
  "data": {
    "clientRefId": "2345653347438",
    "txnId": 4751864,
    "operatorTxnId": "6794198934",
    "mobile": "9876543210",
    "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

text/plain

The body is of type string.

Response

OK

code
string
required
status
string
required
message
string
required
data
Data10 · object
required