Send Pending Amount Request
User can send requested amount to the wallet user.
Host:
Test: https://mob.paymentplug.com/
Live: https://wallet.paymentplug.com/
How to send pending amount request?
The POST request will be send over HTTPS to thewalletServices/WalletServices/sendMoneyToCustomerendpoint.
NOTE:
Pass AuthToken in header for each request Auth API
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())
Verification hash has to be calculated with following combination using SHA256 algorithm 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
Request Parameters
This reference lists all the standard flow parameters to be send in request.
Parameter | Description | Format | Required |
---|---|---|---|
amount | Description: Amount of the transaction. | Format: N [0-9] |
Required: Yes |
telnocc | Description: Country code to whom you want to send. | Format: N [0-9] |
Required: Yes |
toMobile | Description: Receiver's mobile number. | Format: N [0-9] |
Required: Yes |
from_cust_id | Description: Sender's Customer ID. | Format: N [0-9] |
Required: Yes |
fromMobile | Description: Sender's mobile number (with country code eg.91) | Format: N [0-9] |
Required: Yes |
from_cust_name | Description: Sender's name | Format: A255 | Required: Yes |
comment | Description: Description of the transaction | Format: AN [0-9] |
Required: Yes |
walletOwnerId | Description: Provided by Paymentplug Unique id. | Format: N20 [0-9] |
Required: Yes |
fromCurrencyCode | Description: Sender's currency | Format: AN [0-9] |
Required: Yes |
isMoneyFromRequest | Description: Amount sent from pending list (set true) or directly from send money (set false) | Format: A255 | Required: Yes |
requestId | Description: Amount sent from pending list pass request Id or pass 0 | Format: N [0-9] |
Required: Yes |
vendorName | Description: Amount sent to merchant (Merchant name) | Format: A255 | Required: Yes |
vendorUserId | Description: Amount sent to merchant (Merchant user id) | Format: AN255 [a-zA-Z0-9]{255} |
Required: Yes |
vendorUserPassword | Description: Amount sent to merchant (Merchant password) | Format: AN255 [a-zA-Z0-9]{255} |
Required: Yes |
verificationHash | Description: Verification Hash has collected combination of parameters. | Format: String | Required: Yes |
Response Parameters
This reference list lists all the standard flow parameters to be received in response.
Parameter | Description | Format | Required |
---|---|---|---|
to_cust_name | Receiver's Name of the sent amount. | Format: A255 [a-zA-Z] |
Yes |
amount | Amount of the transaction. | Format: N50 [0-9] {1,50} |
Yes |
responseCode | Response code | Format: [a-zA-Z0-9] | Yes |
List of response code from API
Response Code | Message |
---|---|
1 | Success |
2 | Fail |
3 | Invalid Request |
5 | Not found |