mutation

linkWallet

Verify the linking of wallet using OTP for further processing of payment.
Arguments
walletVerifyRequestSchemaInput
WalletVerifyRequestSchemaInput
Wallet Verification Request Schema.
Response
data
JSON
Response received from aggregator.
success
Boolean
Success/Failure of the API call.
Mutation
1mutation linkWallet(
2 $walletVerifyRequestSchemaInput: WalletVerifyRequestSchemaInput
3) {
4 linkWallet(walletVerifyRequestSchemaInput: $walletVerifyRequestSchemaInput) {
5 data
6 success
7 }
8}
Try it
Input Variables
1{
2 "walletVerifyRequestSchemaInput": {
3 "aggregator": "aggregator",
4 "link_token": "link_token",
5 "otp": 42
6 }
7}
Response
1{
2 "linkWallet": {
3 "data": {},
4 "success": true
5 }
6}