Telnyx Verify Demo

Hi and welcome to the Telnyx Verify API demo.

        // 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'
        ]);