Arguments
platform
StringID of the application.
sendVerificationLinkMobileRequestSchemaInput
SendVerificationLinkMobileRequestSchemaInputDescribes the request structure to send verification link to phone number.
Response
verify_mobile_link
BooleanWhether the mobile verification link was successfully sent.
Mutation
1mutation sendVerificationLinkToMobile(2 $platform: String3 $sendVerificationLinkMobileRequestSchemaInput: SendVerificationLinkMobileRequestSchemaInput4) {5 sendVerificationLinkToMobile(6 platform: $platform7 sendVerificationLinkMobileRequestSchemaInput: $sendVerificationLinkMobileRequestSchemaInput8 ) {9 verify_mobile_link10 }11}
Try it
Input Variables
1{2 "platform": "platform",3 "sendVerificationLinkMobileRequestSchemaInput": {4 "active": true,5 "country_code": "country_code",6 "phone": "1+ 418-323-4236",7 "primary": true,8 "verified": true9 }10}
Response
1{2 "sendVerificationLinkToMobile": {3 "verify_mobile_link": true4 }5}
Was this section helpful?