Arguments
orderId
StringA unique number used for identifying and tracking your orders.
shipmentId
StringID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID.
verifyOtpInput
VerifyOtpInputSchema for verify otp.
Response
success
BooleanIndicates whether the request was successful.
Mutation
1mutation verifyOtpForRefundBankDetails(2 $orderId: String3 $shipmentId: String4 $verifyOtpInput: VerifyOtpInput5) {6 verifyOtpForRefundBankDetails(7 orderId: $orderId8 shipmentId: $shipmentId9 verifyOtpInput: $verifyOtpInput10 ) {11 success12 }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": true4 }5}
Was this section helpful?