mutation

verifyOtpAndAddBeneficiaryForWallet

Verify OTP provided by the user and adds a wallet beneficiary.
Arguments
walletOtpRequestInput
WalletOtpRequestInput
Wallet OTP Request.
Response
is_verified_flag
String!
Required
Boolean Flag whether OTP Validation is already done or not.
request_id
String!
Required
Request Id for wallet otp request.
success
Boolean
Response is successful or not.
Mutation
1mutation verifyOtpAndAddBeneficiaryForWallet(
2 $walletOtpRequestInput: WalletOtpRequestInput
3) {
4 verifyOtpAndAddBeneficiaryForWallet(
5 walletOtpRequestInput: $walletOtpRequestInput
6 ) {
7 is_verified_flag
8 request_id
9 success
10 }
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": true
6 }
7}