cURL
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" } }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
OK
The response is of type object.
object