gpt_demo / g4f /.v1 /gpt4free /quora /graphql /SendVerificationCodeForLoginMutation.graphql
starsaround's picture
Upload 183 files
f4b4235
raw
history blame contribute delete
263 Bytes
mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}