Verify Mobile and Currency
Verify mobile and currency of the receiver wallet user.
User can verify currency and mobile
number of receiver account.
The POST request will be send over HTTPS to the
endpoint.
Sample Request
Sample Response
NOTE:
- 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
How to generate verification Hash?
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 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 |
Response Code | Message |
---|---|
1 | Success |
2 | Fail |
3 | Invalid Request |
5 | Not found |
7 | Same Currency |