Test Cases
// Country: Pakistan | Instrument : Wallet | Scenario : Success
DISPLAY ALL SUPPORTED MOBILE WALLET PROVIDERS BASED ON COUNTRY
GET /v1/payout/bankwire/walletCodes?countryCode=PK
Response
{
"status": 200,
"message": "Successfully fetched walletcodes!",
"data": {
"wallets": [
{
"walletName": "BANKALFA",
"providerCode": "0920001"
},
{
"walletName": "JAZZCASH",
"providerCode": "0920027"
},
{
"walletName": "EASYPAISA",
"providerCode": "0920037"
},
{
"walletName": "UPAISA",
"providerCode": "0920039"
},
{
"walletName": "NAYAPAY",
"providerCode": "0920049"
},
{
"walletName": "SADAPAY",
"providerCode": "09201"
}
]
}
}
************************************************************************************************************************
VERIFY AND SAVE MOBILE WALLET DETAIL (optional step)
POST /v1/partners/user/forensics/whitelist/mobileWallet
Request
{
"walletHolderName": "NOSHEEN ASGHAR",
"mobile": "+923051108024",
"provider": "0920027_PKPRI",
"country": "PK",
"fiatCurrency": "ALL",
"userEmail": "abc@test.com"
}
************************************************************************************************************************
SUBMIT QUOTE BASED ON CRYPTO
POST /v1/payout/bankwire/quotebyquantity
{
"userEmail": "abc@test.com",
"coin": "USDT",
"recipientRelationship": "Brother",
"remittancePurpose": "Gift",
"transferType": "WALLET",
"msisdn": "+923051108024",
"accountNo": "string",
"requestCurrency": "PKR",
"sendingCurrency": "USD",
"receivingCurrency": "PKR",
"receivingCountry": "PK",
"sendingCountry": "US",
"quantity": 35
}
************************************************************************************************************************
SUBMIT QUOTE BASED ON FIAT
POST /v1/payout/bankwire/quotebyamount
{
"userEmail": "abc@test.com",
"coin": "USDT",
"recipientRelationship": "Brother",
"remittancePurpose": "Gift",
"transferType": "WALLET",
"msisdn": "+923051108024",
"accountNo": "string",
"requestCurrency": "PKR",
"sendingCurrency": "USD",
"receivingCurrency": "PKR",
"receivingCountry": "PK",
"sendingCountry": "US",
"amount": 600
}
************************************************************************************************************************
ACCEPT QUOTE AND SUBMIT ORDER
POST /v1/payout/bankwire/submitOrder/wallet
{
"transactionType": "p2p",
"quoteId": "",
"sourceOfFunds": "Salary",
"sender_msisdn": "+923051108024",
"receiver_msisdn": "+923051108024",
"walletProviderName": "string",
"walletProviderCode": "0920027_PKPRI",
"receiver_firstName": "NOSHEEN",
"receiver_lastName": "ASGHAR"
}
Last updated