mutation

verifyOtpForRefundBankDetails

Verify OTP sent by customer.
Arguments
orderId
String
A unique number used for identifying and tracking your orders.
shipmentId
String
ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID.
verifyOtpInput
VerifyOtpInput
Schema for verify otp.
Response
success
Boolean
Indicates whether the request was successful.
Mutation
1mutation verifyOtpForRefundBankDetails(
2 $orderId: String
3 $shipmentId: String
4 $verifyOtpInput: VerifyOtpInput
5) {
6 verifyOtpForRefundBankDetails(
7 orderId: $orderId
8 shipmentId: $shipmentId
9 verifyOtpInput: $verifyOtpInput
10 ) {
11 success
12 }
13}
Try it
Input Variables
1{
2 "orderId": "orderId",
3 "shipmentId": "shipmentId",
4 "verifyOtpInput": {
5 "otp_code": "otp_code",
6 "request_id": "request_id"
7 }
8}
Response
1{
2 "verifyOtpForRefundBankDetails": {
3 "success": true
4 }
5}