Send Pending Amount Request
User can send requested amount to the wallet user.
How to send pending amount request?
The POST request will be send over HTTPS to the endpoint.
Sample Request

Sample Response

NOTE:
- isMoneyFromRequest – keep true
- requestId - give request Id value from list of Pending requests
- telnocc – country code to whom you want to send
- toMobile – mobile number to whom you want to send
- fromMobile – your registered mobile number with country code
- from_cust_id – you will get cust id in login API response
- verificationHash – SHA256Algorithm.generateSHA256Hash(secKey.trim()+amount.trim()+telnocc.trim()+toMobile.trim()+from_cust_id.trim()+fromMobile.trim()+from_cust_name.trim()+comment.trim() +walletOwnerId.trim())
How to generate verification hash?
Verification hash has to be calculated with following combination and need to be send along with the authentication parameters in each server-to-server request:
<secKey><amount><telnocc><toMobile><from_cust_id><fromMobile><from_cust_name><comment><walletOwnerId>
Sample Code

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