TelQ logo

TelQ Platform

Automate SMS Testing Tool for Effortless Operation

TelQ provides a wide range of integration options for automated SMS testing, including SMPP and REST API integration, as well as a direct integration with the Alaris platform.

TelQ integration

SMPP API Integration

SMPP API allows you to connect directly to your SMPP server, to send and to schedule test messages from TelQ's user interface.

Quick set-up

If you already have an SMPP server, this type of integration will probably be the fastest.

Custom service type

You can assign a unique service type to each supplier for internal routing purposes.

Custom TLV parameters

Unique SMPP TLV parameters can also be used to set up flexible internal routing on your server.

Multiple connections

You can set up multiple SMPP binds from our platform to your server with a unique username and password.

Encryption

We encrypt your SMPP connection passwords on our backend side and keep them safe.

Detailed SMPP Tutorial

Watch this video and learn how to connect to the TelQ SMS testing service via an SMPP integration.

Play Video
Page divider in TelQ brand colors

Integrating with service type or TLV

You can set up one SMPP connection to your server and assign a unique Service Type or TLV  to different suppliers in our user interface. When you send the test message to a particular supplier, the unique parameter will automatically be added to the message, allowing you to do internal routing based on it.

Flexible routing

Assign unique identifying parameters like service type or TLV for each supplier and set up internal routing for such messages.

Secure

You have full control of the traffic since we don't connect to your suppliers directly.

Easy set-up

You only need one SMPP bind to be able to test all of your suppliers. A simple addition of new suppliers.

Upload from Excel

We can upload a list of supplier names and the above mentioned parameters from an excel file.

SMPP SMS testing platform integration
SMPP SMS testing platform integration

Integrating with SMPP bind login as an identifier

This approach requires you to set up multiple SMPP connections, one for each supplier you would like to test. This works only if you can set up custom routing for each of the connections. In this case, the SMPP bind login name would be the unique identifier for your system to do the routing and send traffic to the corresponding supplier. This takes more time to set up, however, it should be supported by most SMPP servers.

Flexible routing

Create as many SMPP binds as you need in order to include all your suppliers in our testing platform.

Secure

You have full control of the traffic since we don't connect to your suppliers directly.

Highly compatible

This integration approach works with most SMPP servers — even ones with the most basic features.

Upload from Excel

We can upload a list of suppliers and SMPP binds parameters from an excel file on your behalf.

Download SMPP API documentation

Page divider in TelQ brand colors

REST API Integration

SMS testing through REST API integration allows you to work directly from your system's user interface.

Complete integration

REST API gives you enough flexibility as you create SMS on your platform and receive SMS API tests in your system.

Highest security

Since you send tests directly from your system, you have full control over your SMPP or ss7 channels.

SMS testing automation

With REST API, your team can use your system. No extra costs for onboarding or training for the TelQ platform.

				
					use TelQ\Sdk\Models\Destination;
use TelQ\Sdk\Models\Tests;

// new Destination('mcc', 'mnc', 'ported from mnc')
$sendTests = Tests::fromArray([
    'destinationNetworks' => [
        new Destination('222', '36', '10'),
        new Destination('505', '01')
    ],
    'resultsCallbackUrl' => 'https://my-domain.com/telq-callback',
    'maxCallbackRetries' => 3,
    'testIdTextType' => 'ALPHA',
    'testIdTextCase' => 'MIXED',
    'testIdTextLength' => 6,
    'testTimeToLiveInSeconds' => 3600
]);
$tests = $api->sendTests($sendTests);
foreach ($tests as $test) {
    echo 'Id: ', $test->getId(), PHP_EOL;
    echo 'PhoneNumber: ', $test->getPhoneNumber(), PHP_EOL;
    echo 'TestIdText: ', $test->getTestIdText(), PHP_EOL;
    echo 'Error message: ', $test->getErrorMessage() ?: 'empty', PHP_EOL;
    echo 'Destination:', PHP_EOL;
    echo '    Mcc: ', $test->getDestinationNetwork()->getMcc(), PHP_EOL;
    echo '    Mnc: ', $test->getDestinationNetwork()->getMnc(), PHP_EOL;
    echo '    Ported from mnc: ', $test->getDestinationNetwork()->getPortedFromMnc() ?: 'empty', PHP_EOL;
    echo PHP_EOL;
}
				
			
				
					curl -X POST "https://api.telqtele.com/v2.1/client/tests" -H "accept: */*"
  -H "Content-Type: application/json" -d "{ \"destinationNetworks\": [ { \"mcc\": \"208\",
      \"mnc\": \"10\", \"portedFromMnc\": \"20\" } ] }"

# Example of body with all available parameters
{
  "destinationNetworks": [
    {
      "mcc": "206",
      "mnc": "10",
      "portedFromMnc": "20"
    },
    {
      "mcc": "716",
      "mnc": "06",
    }
  ],
  "resultsCallbackUrl": "https://some-callback-url.com/some-path",
  "testIdTextType": "ALPHA_NUMERIC",
  "testIdTextCase": "MIXED",
  "testIdTextLength": "6",
  "maxCallbackRetries": 1,
  "testTimeToLiveInSeconds": 200
}
				
			
				
					destinationNetworks = [
    {
        "mcc": "206",
        "mnc": "10",
        "portedFromMnc": "20"
    },
    {
        "mcc": "716",
        "mnc": "06"
    }
]

requested_tests = test_client.initiate_new_tests(
    destinationNetworks=destinationNetworks,
    resultsCallbackUrl="https://my-callback-url.com/telq_result",
    maxCallbackRetries=3,
    testIdTextType="ALPHA_NUMERIC",
    testIdTextCase="MIXED",
    testIdTextLength=7,
    testTimeToLiveInSeconds=3000
)
requested_tests = test_client.initiate_new_tests(destinationNetworks=destinationNetworks)
				
			
				
					List<Network> networks = new ArrayList<>();

  Network network_1 = Network.builder()
    .mcc("206")
    .mnc("10")
    .portedFromMnc("20")
    .build();

  Network network_2 = Network.builder()
    .mcc("716")
    .mnc("06")
    .build();

  networks.add(network_1);
  networks.add(network_2);

  int maxCallBackRetries = 1;
  String resultsCallbackUrl = "https://some-callback-url.com/some-path";
  int testTimeToLive = 200;
  String callBackToken = "peHWFdAXikjzmMgqPTwhpeHWFdAXikjzmMgqPTwhpeHWFdAXikjzmMgqPTwh";

  TestIdTextOptions testIdTextOptions = TestIdTextOptions.builder()
    .testIdTextType(TestIdTextType.ALPHA_NUMERIC)
    .testIdTextCase(TestIdTextCase.MIXED)
    .testIdTextLength(6)
    .build();

  TestRequest testRequest = TestRequest.builder()
    .networks(networks)
    .maxCallbackRetries(maxCallBackRetries)
    .callbackUrl(resultsCallbackUrl)
    .callbackToken(callBackToken)
    .testTimeToLive(testTimeToLive)
    .timeUnit(TimeUnit.MINUTES)
    .testIdTextOptions(testIdTextOptions)
    .build();

  List<Test> requestedTests = testClient.initiateNewTests(testRequest);
				
			

View REST API for SMS testing

Help center

If you have more questions, please check out the following sections.
TelQ questions

Frequently Asked Questions

The following section provides answers o the most commonly asked questions. If you can't find the answer to your question, please contact us.

Simplify & automate SMS testing with TelQ!

Accurate results and streamlined SMS delivery testing via API integrations.
\n\n\n \n\n\n\ndanielvoelk.de | 520: Web server is returning an unknown error<\/title>\n<meta charset=\"UTF-8\" \/>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=UTF-8\" \/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\" \/>\n<meta name=\"robots\" content=\"noindex, nofollow\" \/>\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" \/>\n<link rel=\"stylesheet\" id=\"cf_styles-css\" href=\"\/cdn-cgi\/styles\/main.css\" \/>\n\n\n<\/head>\n<body>\n<div id=\"cf-wrapper\">\n <div id=\"cf-error-details\" class=\"p-0\">\n <header class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-8\">\n <h1 class=\"inline-block sm:block sm:mb-2 font-light text-60 lg:text-4xl text-black-dark leading-tight mr-2\">\n <span class=\"inline-block\">Web server is returning an unknown error<\/span>\n <span class=\"code-label\">Error code 520<\/span>\n <\/h1>\n <div>\n Visit <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_520&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">cloudflare.com<\/a> for more information.\n <\/div>\n <div class=\"mt-3\">2025-03-17 23:16:12 UTC<\/div>\n <\/header>\n <div class=\"my-8 bg-gradient-gray\">\n <div class=\"w-240 lg:w-full mx-auto\">\n <div class=\"clearfix md:px-8\">\n \n<div id=\"cf-browser-status\" class=\" relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n \n <span class=\"cf-icon-browser block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-ok w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n \n <\/div>\n <span class=\"md:block w-full truncate\">You<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n \n Browser\n \n <\/h3>\n <span class=\"leading-1.3 text-2xl text-green-success\">Working<\/span>\n<\/div>\n\n<div id=\"cf-cloudflare-status\" class=\" relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_520&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">\n <span class=\"cf-icon-cloud block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-ok w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n <\/a>\n <\/div>\n <span class=\"md:block w-full truncate\">Frankfurt<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_520&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">\n Cloudflare\n <\/a>\n <\/h3>\n <span class=\"leading-1.3 text-2xl text-green-success\">Working<\/span>\n<\/div>\n\n<div id=\"cf-host-status\" class=\"cf-error-source relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n \n <span class=\"cf-icon-server block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-error w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n \n <\/div>\n <span class=\"md:block w-full truncate\">danielvoelk.de<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n \n Host\n \n <\/h3>\n <span class=\"leading-1.3 text-2xl text-red-error\">Error<\/span>\n<\/div>\n\n <\/div>\n <\/div>\n <\/div>\n\n <div class=\"w-240 lg:w-full mx-auto mb-8 lg:px-8\">\n <div class=\"clearfix\">\n <div class=\"w-1\/2 md:w-full float-left pr-6 md:pb-10 md:pr-0 leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3 mb-4\">What happened?<\/h2>\n <p>There is an unknown connection issue between Cloudflare and the origin web server. As a result, the web page can not be displayed.<\/p>\n <\/div>\n <div class=\"w-1\/2 md:w-full float-left leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3 mb-4\">What can I do?<\/h2>\n <h3 class=\"text-15 font-semibold mb-2\">If you are a visitor of this website:<\/h3>\n <p class=\"mb-6\">Please try again in a few minutes.<\/p>\n\n <h3 class=\"text-15 font-semibold mb-2\">If you are the owner of this website:<\/h3>\n <p><span>There is an issue between Cloudflare's cache and your origin web server. Cloudflare monitors for these errors and automatically investigates the cause. To help support the investigation, you can pull the corresponding error log from your web server and submit it our support team. Please include the Ray ID (which is at the bottom of this error page).<\/span> <a rel=\"noopener noreferrer\" href=\"https:\/\/support.cloudflare.com\/hc\/en-us\/articles\/200171936-Error-520\">Additional troubleshooting resources<\/a>.<\/p>\n <\/div>\n <\/div>\n <\/div>\n\n <div class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300\">\n <p class=\"text-13\">\n <span class=\"cf-footer-item sm:block sm:mb-1\">Cloudflare Ray ID: <strong class=\"font-semibold\">9220325c4d9c9f15<\/strong><\/span>\n <span class=\"cf-footer-separator sm:hidden\">\u2022<\/span>\n <span id=\"cf-footer-item-ip\" class=\"cf-footer-item hidden sm:block sm:mb-1\">\n Your IP:\n <button type=\"button\" id=\"cf-footer-ip-reveal\" class=\"cf-footer-ip-reveal-btn\">Click to reveal<\/button>\n <span class=\"hidden\" id=\"cf-footer-ip\">3.65.84.235<\/span>\n <span class=\"cf-footer-separator sm:hidden\">\u2022<\/span>\n <\/span>\n <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Performance & security by<\/span> <a rel=\"noopener noreferrer\" href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_520&utm_campaign=danielvoelk.de\" id=\"brand_link\" target=\"_blank\">Cloudflare<\/a><\/span>\n \n <\/p>\n <script>(function(){function d(){var b=a.getElementById(\"cf-footer-item-ip\"),c=a.getElementById(\"cf-footer-ip-reveal\");b&&\"classList\"in b&&(b.classList.remove(\"hidden\"),c.addEventListener(\"click\",function(){c.classList.add(\"hidden\");a.getElementById(\"cf-footer-ip\").classList.remove(\"hidden\")}))}var a=document;document.addEventListener&&a.addEventListener(\"DOMContentLoaded\",d)})();<\/script>\n<\/div><!-- \/.error-footer -->\n\n\n <\/div>\n<\/div>\n<\/body>\n<\/html>\n"]; </script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementorfilter/ef-script.js?ver=1.4.2" id="ef-script-js" type="text/javascript"></script>--> <!--<script id="eael-general-js-extra" type="text/javascript"> var localize = {"ajaxurl":"https:\/\/telqtele.com\/wp-admin\/admin-ajax.php","nonce":"6ca662e239","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"http:\/\/telqtele.com\/integration","cart_redirectition":"","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; </script>--> <!--<script src="https://telqtele.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=5.7.4" id="eael-general-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/uploads/essential-addons-elementor/eael-16006.js?ver=1741020253" id="eael-16006-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js?ver=1.6.8" id="bootstrap-bundle-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/smooth-scroll/dist/smooth-scroll.polyfills.min.js?ver=1.6.8" id="smooth-scroll-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/jarallax/dist/jarallax.min.js?ver=1.6.8" id="jarallax-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/jarallax/dist/jarallax-element.min.js?ver=1.6.8" id="jarallax-element-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/parallax-js/dist/parallax.min.js?ver=1.6.8" id="parallax-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/shufflejs/dist/shuffle.min.js?ver=1.6.8" id="shufflejs-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/lightgallery.js/dist/js/lightgallery.min.js?ver=1.6.8" id="lightgallery-js-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/lg-video.js/dist/lg-video.min.js?ver=1.6.8" id="lg-video-js-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/lg-thumbnail.js/dist/lg-thumbnail.min.js?ver=1.6.8" id="lg-thumbnail-js-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/swiper/swiper-bundle.min.js?ver=1.6.8" id="swiper-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/vendor/rellax/rellax.min.js?ver=1.6.8" id="rellax-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/js/theme.min.js?ver=1.6.8" id="silicon-script-js" type="text/javascript"></script>--> <!--<script id="silicon-navigation-js-extra" type="text/javascript"> var siliconScreenReaderText = {"expand":"Expand child menu","collapse":"Collapse child menu"}; </script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/js/components/navigation.js?ver=1.6.8" id="silicon-navigation-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/themes/silicon/assets/js/components/navigation-init.js?ver=1.6.8" id="silicon-navigation-init-js" type="text/javascript"></script>--> <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/components/prism-core.min.js?ver=1.23.0" id="prismjs_core-js" type="text/javascript"></script>--> <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/plugins/autoloader/prism-autoloader.min.js?ver=1.23.0" id="prismjs_loader-js" type="text/javascript"></script>--> <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/plugins/normalize-whitespace/prism-normalize-whitespace.min.js?ver=1.23.0" id="prismjs_normalize-js" type="text/javascript"></script>--> <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/plugins/toolbar/prism-toolbar.min.js?ver=1.23.0" id="prismjs_toolbar-js" type="text/javascript"></script>--> <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js?ver=1.23.0" id="prismjs_copy_to_clipboard-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.23.2" id="elementor-pro-webpack-runtime-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.23.3" id="elementor-webpack-runtime-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.23.3" id="elementor-frontend-modules-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-includes/js/dist/hooks.min.js?ver=2810c76e705dd1a53b18" id="wp-hooks-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js" type="text/javascript"></script>--> <!--<script id="wp-i18n-js-after" type="text/javascript"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script>--> <!--<script id="elementor-pro-frontend-js-before" type="text/javascript"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/telqtele.com\/wp-admin\/admin-ajax.php","nonce":"47c78defa7","urls":{"assets":"https:\/\/telqtele.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/telqtele.com\/wp-json\/"},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}}, "facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/telqtele.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.23.2" id="elementor-pro-frontend-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2" id="elementor-waypoints-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js" type="text/javascript"></script>--> <!--<script id="elementor-frontend-js-before" type="text/javascript"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}, "version":"3.23.3","is_static":false,"experimentalFeatures":{"e_optimized_css_loading":true,"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"nested-elements":true,"e_lazyload":true,"display-conditions":true,"form-submissions":true,"taxonomy-filter":true},"urls":{"assets":"https:\/\/telqtele.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/telqtele.com\/wp-admin\/admin-ajax.php"},"nonces":{"floatingButtonsClickTracking":"de6c052771"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":6433,"title":"Automate%20Your%20SMS%20Testing%20Tool%20-%20TelQ%20API%20Integrations","excerpt":"","featuredImage":false}}; </script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.23.3" id="elementor-frontend-js" type="text/javascript"></script>--> <!--<script src="https://telqtele.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.23.2" id="pro-elements-handlers-js" type="text/javascript"></script>--> </body></html>