This API is used to get details of the wallet holder.
POST
http(s)://{{staging/production}}/walletdetailRequest Post Parameters:
| PARAMETER NAME | DATA TYPE | DESCRIPTION |
|---|---|---|
MobileNo* | String | 1. Minimum and Maximum 10 digits allowed, 2. Only numeric values allowed |
BODY
{ "MobileNo":"9999999999"}
Response Parameters:
| Status | String | Indicates the status of request. If wallet details fetched successfully then Status will be 'Success'. If the value of Status is other then 'Success' consider request as failed & reason for failure will be provided in 'Msg' parameter. |
| Msg | String | |
| FirstName | String | First Name of the wallet holder. |
| LastName | String | Last Name of the wallet holder. |
| DateOfBirth | String | Date Of Birth of the wallet holder. |
| String | Email Address of the wallet holder. | |
| MobileNo | String | Mobile No of the wallet holder. |
| PINCode | Number | Area Pin-code of the wallet holder. |
| CardNumber | String | Card Number of the wallet. |
| ExpiryDate | String | Expiry Date of the card. |
| CurrentBalance | Money | Current Available balance in card. |
| RiskCategory | String | Wallet risk category |
| KYCTypeName | String | Wallet KYC type name (Basic,Easy,Power) |
| KYCType | String | Wallet KYC type (1=Basic, 2=Easy,3=Power) |
| State | String | Wallet holders address state name |
| City | String | Wallet holders address city name |
| IsTopUpAllowed | Number | Allowed for wallet Top up , 1- Yes, 0- No |
| IsWalletToBankAllowed | Number | Allowed for wallet To bank, 1- Yes, 0- No |
| IsP2PAllowed | Number | Allowed for Person to person transfer , 1- Yes, 0- No |
| IsP2MAllowed | Number | Allowed for person to merchant, 1- Yes, 0- No |
| IsTransactionsAllowed | Number | Allowed for Transaction, 1- Yes, 0- No |
RESPONSE
{ "Response":{
"Status":"Success",
"Msg":""
},
"FirstName":"Abhishek",
"LastName":"Sharma",
"DateOfBirth":"30-08-1980",
"Email":"abhishek@gmail.com",
"MobileNo":"9999999999",
"PINCode":"401064",
"CardNumber":"8000000000000001",
"ExpiryDate":"26-06-2021",
"CurrentBalance": 0,
"RiskCategory": "Medium",
"KYCTypeName": "Easy",
"KYCType": "2",
"State": "Maharashtra",
"City": "Mumbai",
"IsTopUpAllowed": 1,
"IsWalletToBankAllowed": 0,
"IsP2PAllowed": 0,
"IsP2MAllowed": 0,
"IsTransactionsAllowed": 1
}