Verify Mobile and Currency
Verify mobile and currency of the receiver wallet user.
Host
Test: https://mob.paymentplug.com/
Live: https://wallet.paymentplug.com/
The POST request will be send over HTTPS to the walletServices/WalletServices/verifyMobileAndCurrency endpoint.
Sample Request
Sample Response
- verificationHash – SHA256Algorithm.generateSHA256Hash(secKey.trim()+amount.trim()+telnocc.trim()+toMobile.trim()+fromCurrency.tri m()+customerId.trim())
- telnocc – country code to whom you want to send
- toMobile – mobile number to whom you want to send
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 >< fromCurrency >< customerId >
Sample code
Request Parameters
This reference lists all the standard flow parameters to be send in request.
Parameter | Description | Format | Required |
---|---|---|---|
custId | Generated unique customer id on per user sign up | N [0-9] |
Yes |
amount | Amount of the transaction. | N [0-9] |
Yes |
telnocc | Country code to whom you want to send. | N [0-9] |
Yes |
toMobile | Receiver's mobile number. | N [0-9] |
Yes |
fromCurrency | Sender's currency | N [0-9] |
Yes |
walletOwnerId | Provided by Paymentplug Unique id. | N20 [0-9] |
Yes |
verificationHash | Verification Hash has collected combination of parameters. | String | Yes |
Response Parameters
This reference list lists all the standard flow parameters to be received in response.
Parameter | Description | Format | Required |
---|---|---|---|
toCustName | Receiver's Name of the verify user and currency. | A255 [a-zA-Z] | Yes |
exchangeCurrency | Sending amount to different currency will get the exchange currency amount. | N50 [0-9] |
Yes |
toCurrencyCode | Displays for different currency user's only. | N50 [0-9] |
Yes |
responseCode | Response code | [0-9] | Yes |
List of response code from API
Response Code | Message |
---|---|
1 | SUCCESS |
2 | FAILED |
3 | Invalid Request |
5 | Not found |
7 | Same Currency |