Verify one-time password sent to user's mobile for resetting a forgotten password.
Arguments
platform
StringID of the application.
verifyMobileForgotOtpRequestSchemaInput
VerifyMobileForgotOtpRequestSchemaInputDescribes the request structure to verify OTP for forgot mobile number.
Mutation
1mutation verifyMobileForgotOTP(2 $platform: String3 $verifyMobileForgotOtpRequestSchemaInput: VerifyMobileForgotOtpRequestSchemaInput4) {5 verifyMobileForgotOTP(6 platform: $platform7 verifyMobileForgotOtpRequestSchemaInput: $verifyMobileForgotOtpRequestSchemaInput8 ) {9 forgot_token10 success11 }12}
Try it
Input Variables
1{2 "platform": "platform",3 "verifyMobileForgotOtpRequestSchemaInput": {4 "otp": "otp",5 "request_id": "request_id"6 }7}
Response
1{2 "verifyMobileForgotOTP": {3 "forgot_token": "forgot_token",4 "success": true5 }6}
Was this section helpful?