Request Money
User can send money request to another waller user.
How to request money?
The POST request will be send over HTTPS to the endpoint.
Sample Request

Sample Response

NOTE:
- telnocc – country code to whom you want to request
- toMobile – mobile number to whom you want to request
- fromMobile - your registered mobile number with country code
- fromCustid – you will get cust id in login API response
- verificationHash – SHA256Algorithm.generateSHA256Hash(secKey.trim()+requestAmount.trim()+telnocc.trim()+toMobile.trim()+requestComment.trim()+fromCustid.trim()+fromCustomerName.trim()+ fromMobile.trim())
How to generate verification Hash?
Checksum has to be calculated with following combination and need to be send along with the authentication parameters in each server-to-server request:
<secKey><requestAmount><telnocc><toMobile><requestComment><fromCustid><fromCustomerName>
<fromMobile>
Sample Code

| Response Code | Message |
|---|---|
| 1 | Success |
| 2 | Fail |
| 3 | Invalid Request |