POST
/
api
/
v1
/
service
/
recharge
/
complaint
/
status
curl --request POST \
  --url https://eazype.com/api/v1/service/recharge/complaint/status \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "mobile": "8004007231",
  "clientRefId": "2345653347438",
  "complaintId": "10927"
}'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Complaint Status Fetched Successfully",
  "data": {
    "complaintId": 10878,
    "complaintStatus": "pending",
    "txnId": 4272176,
    "rechargeStatus": "success",
    "orderId": "REC2700893506461518E9D42",
    "clientRefId": "REC2700893506461518E"
  }
}

Authorizations

Authorization
string
header
required

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

Headers

Content-Type
string

Body

application/json ยท object

Response

200
application/json
OK

The response is of type object.