mutation

sendVerificationLinkToMobile

Send a verification link to a newly added mobile number.
Arguments
platform
String
ID of the application.
sendVerificationLinkMobileRequestSchemaInput
SendVerificationLinkMobileRequestSchemaInput
Describes the request structure to send verification link to phone number.
Response
verify_mobile_link
Boolean
Whether the mobile verification link was successfully sent.
Mutation
1mutation sendVerificationLinkToMobile(
2 $platform: String
3 $sendVerificationLinkMobileRequestSchemaInput: SendVerificationLinkMobileRequestSchemaInput
4) {
5 sendVerificationLinkToMobile(
6 platform: $platform
7 sendVerificationLinkMobileRequestSchemaInput: $sendVerificationLinkMobileRequestSchemaInput
8 ) {
9 verify_mobile_link
10 }
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": true
9 }
10}
Response
1{
2 "sendVerificationLinkToMobile": {
3 "verify_mobile_link": true
4 }
5}