Verify OTP provided by the user and adds a wallet beneficiary.
Arguments
walletOtpRequestInput
WalletOtpRequestInputWallet OTP Request.
Mutation
1mutation verifyOtpAndAddBeneficiaryForWallet(2 $walletOtpRequestInput: WalletOtpRequestInput3) {4 verifyOtpAndAddBeneficiaryForWallet(5 walletOtpRequestInput: $walletOtpRequestInput6 ) {7 is_verified_flag8 request_id9 success10 }11}
Try it
Input Variables
1{2 "walletOtpRequestInput": {3 "country_code": "country_code",4 "mobile": "mobile"5 }6}
Response
1{2 "verifyOtpAndAddBeneficiaryForWallet": {3 "is_verified_flag": "is_verified_flag",4 "request_id": "request_id",5 "success": true6 }7}
Was this section helpful?