Arguments
updatePasswordRequestSchemaInput
UpdatePasswordRequestSchemaInputDescribes the request structure to update the password.
Response
message
StringResult of the email verification process.
Mutation
1mutation updatePassword(2 $updatePasswordRequestSchemaInput: UpdatePasswordRequestSchemaInput3) {4 updatePassword(5 updatePasswordRequestSchemaInput: $updatePasswordRequestSchemaInput6 ) {7 message8 }9}
Try it
Input Variables
1{2 "updatePasswordRequestSchemaInput": {3 "new_password": "new_password",4 "old_password": "old_password"5 }6}
Response
1{2 "updatePassword": {3 "message": "message"4 }5}
Was this section helpful?