Wallet Detail

914 views Last Updated On: 29 Dec 2021

This API is used to get details of the wallet holder.

POST 

http(s)://{{staging/production}}/walletdetail

Request Post Parameters:

PARAMETER NAME

DATA TYPE

DESCRIPTION

MobileNo*

String1. Minimum and Maximum 10 digits allowed,
2. Only numeric values allowed


BODY

{    "MobileNo":"9999999999"} 


Response Parameters:

StatusString

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.

MsgString
FirstNameStringFirst Name of the wallet holder.
LastNameStringLast Name of the wallet holder.
DateOfBirthStringDate Of Birth of the wallet holder.
EmailStringEmail Address of the wallet holder.
MobileNoStringMobile No of the wallet holder.
PINCodeNumberArea Pin-code of the wallet holder.
CardNumberStringCard Number of the wallet.
ExpiryDateStringExpiry Date of the card.
CurrentBalanceMoneyCurrent Available balance in card.
RiskCategory
String
Wallet risk category
KYCTypeNameString
Wallet KYC type name (Basic,Easy,Power)
KYCTypeStringWallet KYC type (1=Basic, 2=Easy,3=Power)
StateString
Wallet holders address state name
CityString
Wallet holders address city name
IsTopUpAllowedNumber
Allowed for wallet Top up , 1- Yes, 0- No
IsWalletToBankAllowedNumberAllowed for wallet To bank, 1- Yes, 0- No 
IsP2PAllowed
Number
Allowed for Person to person transfer , 1- Yes, 0- No 
IsP2MAllowed
NumberAllowed for person to merchant, 1- Yes, 0- No 
IsTransactionsAllowedNumber
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    
 }