Hi and welcome to the Telnyx Verify API demo.
Enter a phone number. Please remember to include country code:
// Create a Verification profile $verify_profile = VerifyProfile::create(["name" => "Test Profile"]); // Trigger a verification request and send SMS $verification = Verification::create([ 'verify_profile_id' => $verify_profile['id'], 'phone_number' => '+15557770000', 'type' => 'sms' ]);