Add bank account specifically for refunds, employing OTP verification for security.
Arguments
addBeneficiaryDetailsOTPRequestInput
AddBeneficiaryDetailsOTPRequestInputAdd Beneficiary Details OTP request.
Mutation
1mutation addRefundBankAccountUsingOTP(2 $addBeneficiaryDetailsOTPRequestInput: AddBeneficiaryDetailsOTPRequestInput3) {4 addRefundBankAccountUsingOTP(5 addBeneficiaryDetailsOTPRequestInput: $addBeneficiaryDetailsOTPRequestInput6 ) {7 data8 is_verified_flag9 message10 success11 }12}
Try it
Input Variables
1{2 "addBeneficiaryDetailsOTPRequestInput": {3 "details": {4 "account_holder": "account_holder",5 "account_no": "account_no",6 "bank_name": "bank_name",7 "branch_name": "branch_name",8 "ifsc_code": "ifsc_code"9 },10 "order_id": "order_id"11 }12}
Response
1{2 "addRefundBankAccountUsingOTP": {3 "data": {},4 "is_verified_flag": true,5 "message": "message",6 "success": true7 }8}
Was this section helpful?