Logo
Trusted by over 5000 companies
TPG
INPRIME
Lubimoe_Taxi
Mantinga
Geliar
BeesAero
Improve customer experience throughout the entire customer journey
Simplify and improve your business communication with customers – from online support and custom notifications through two-factor authentication
icon
Marketing
Send promotional messages, information about special offers, seasonal sales and discounts
icon
Sales
Remind about items from wishlist, confirm the status of purchases and make appointments
icon
Customer Support
Provide your customers with quick and professional support and receive feedback
icon
Account Security
Set up two-factor SMS authentication to prevent the system from being hacked
channels
All channels of communication with your customers in one place
Do you want to improve the existing channels of communication with your audience, for example, SMS or Voice calls, or implement new ways of communication? IT-Decision Telecom specialists will help your business solve this problem
Sales Growth
120%

We will help your company scale and increase your sales using SMS, Viber, WhatsApp and other communication channels

*sales growth after tailoring messaging parameters to our clients

Globally
200+

We directly cooperate with more than 200 mobile network operators/partners, which guarantees fast and reliable delivery of your messages around the world

SMS & Viber API integration
API

With our user-friendly API, you can easily integrate SMS or Viber service into your systems and automatically send messages, transactions and confirmations

Premium support
24/7

Our support team resolves most issues within 2 hours. Moreover, you can get in touch with your Personal Manager at any time.

Inbox

All communication in one place

All interactions between your company and customers are gathered within one interface, regardless of the communication channel. SMS, Viber, WhatsApp – all in one place, for your convenience and user-friendliness of the platform
All communication in one place
Favorable prices and discount system

Pay for outgoing messages at the rates of local mobile network operators. We also have a flexible discount system for those of our clients who send more than 100,000 messages per month. You may contact our sales department, and our managers will calculate the possible discounts for your project and select the most efficient ways of delivering your messages and voice calls

check our prices
DOCUMENTATION FOR DEVELOPERS
Use communication channels in a format convenient for you

We offer two scenarios for the interaction of your business with customers using our platform:

  • Communicate with your customers via SMS, Viber for Business, WhatsApp Business, RCS, Voice, HLR Lookup through your personal account in our platform
  • Integrate our API into your CRM system: SMS, Viber + SMS, Verify, WhatsApp, RCS, Voice and HLR API. Automate messaging, create personalized messages, monitor statistics
View Documentation
var client = new RestClient("web.it-decision.com/v1/api/send-sms");client.Timeout = -1;var request = new RestRequest(Method.POST);request.AddHeader("Authorization", "Basic api_key");request.AddHeader("Content-Type", "application/json");var body = @"{   ""phone"":380632132121,   ""sender"":""InfoItd"",   ""text"":""This is messages DecisionTelecom"",   ""validity_period"":300}";request.AddParameter("application/json", body,  ParameterType.RequestBody);IRestResponse response = client.Execute(request);Console.WriteLine(response.Content);
var myHeaders = new Headers();myHeaders.append("Authorization", "Basic api_key");myHeaders.append("Content-Type", "application/json");var raw = JSON.stringify({  "phone": 380632132121,  "sender": "InfoItd",  "text": "This is messages DecisionTelecom",  "validity_period": 300});var requestOptions = {  method: 'POST',  headers: myHeaders,  body: raw,  redirect: 'follow'};fetch("web.it-decision.com/v1/api/send-sms", requestOptions)  .then(response => response.text())  .then(result => console.log(result))  .catch(error => console.log('error', error));
OkHttpClient client = new OkHttpClient().newBuilder()  .build();MediaType mediaType = MediaType.parse("application/json");RequestBody body = RequestBody.create(mediaType,"{\"phone\":380632132121,\"sender\":\"InfoItd\",\"text\":\"This is messages DecisionTelecom\",\"validity_period\":300}");Request request = new Request.Builder()  .url("web.it-decision.com/v1/api/send-sms")  .method("POST", body)  .addHeader("Authorization", "Basic api_key")  .addHeader("Content-Type", "application/json")  .build();Response response = client.newCall(request).execute();
$curl = curl_init();curl_setopt_array($curl, array(  CURLOPT_URL =>'web.it-decision.com/v1/api/send-sms',  CURLOPT_RETURNTRANSFER =>true,  CURLOPT_ENCODING => '',  CURLOPT_MAXREDIRS =>10,  CURLOPT_TIMEOUT =>0,  CURLOPT_FOLLOWLOCATION =>true,  CURLOPT_HTTP_VERSION =>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST =>'POST',  CURLOPT_POSTFIELDS =>'{     "phone":380632132121,     "sender":"InfoItd",     "text":"This is messages DecisionTelecom",     "validity_period":300  }',  CURLOPT_HTTPHEADER => array(    'Authorization: Basic api_key',    'Content-Type: application/json',  ),));$response = curl_exec($curl);curl_close($curl);echo $response;
import http.clientimport jsonconn = http.client.HTTPSConnection("web.it-decision.com")payload = json.dumps({  "phone": 380632132121,  "sender": "InfoItd",  "text": "This is messages DecisionTelecom",  "validity_period": 300})headers = {  'Authorization': 'Basic api_key',  'Content-Type': 'application/json'}conn.request("POST", "/v1/api/send-sms", payload, headers)res = conn.getresponse()data = res.read()print(data.decode("utf-8"))
package mainimport (  "fmt"  "strings"  "net/http"  "io/ioutil")func main() {  url := "web.it-decision.com/v1/api/send-sms"  method := "POST"  payload := strings.NewReader(`{     "phone":380632132121,     "sender":"InfoItd",     "text":"This is messages DecisionTelecom",     "validity_period":300  }`)  client := &http.Client {}  req, err := http.NewRequest(method, url, payload)  if err != nil {    fmt.Println(err)    return  }  req.Header.Add("Authorization", "Basic api_key")  req.Header.Add("Content-Type", "application/json")  res, err := client.Do(req)  if err != nil {    fmt.Println(err)    return  }  defer res.Body.Close()  body, err := ioutil.ReadAll(res.Body)  if err != nil {    fmt.Println(err)    return  }  fmt.Println(string(body))}
var axios = require('axios');var data = JSON.stringify({  "phone": 380632132121,  "sender": "InfoItd",  "text": "This is messages DecisionTelecom",  "validity_period": 300});var config = {  method: 'post',  url: 'web.it-decision.com/v1/api/send-sms',  headers: {     'Authorization': 'Basic api_key',     'Content-Type': 'application/json'   },  data : data};axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
import http.clientimport jsonconn = http.client.HTTPSConnection("web.it-decision.com")payload = json.dumps({  "phone":380632132121,  "sender": "InfoItd",  "text":"This is messages DecisionTelecom",  "validity_period":300})headers = {  'Authorization': 'Basic api_key',  'Content-Type': 'application/json'}conn.request("POST", "/v1/api/send-sms", payload, headers)res = conn.getresponse()data = res.read()print(data.decode("utf-8"))
DecisionTelecom's Viber for Business and Chat Inbox function provided us the possibility to contact our customers offline and offer them more purchase options with direct links and exclusive offers. As a result, we have increased the number of our customers and the sales of monthly gym membership by 185 percent this year.
Irina, marketing director of "Geliar Gym"
Irina, marketing director of
DecisionTelecom made our integration quick and easy. Adding WhatsApp, Viber and SMS as customer communication channels with the help of DecisionTelecom API helped us significantly increase our conversion rate. In addition, our customers are more satisfied as now we are able to manage multiple conversations across our customers' preferred channels.
Andriy Kamchatkin CEO, INPRIME
Andriy Kamchatkin CEO, INPRIME
Clients
You Can Trust Us
icon
Security
We guarantee the confidentiality and security of the data you transmit, as we use the world’s best AWS servers, and we also have successfully completed the Penetration testing
icon
Support
You get a 24/7 support service and a personal manager who will answer all your questions
icon
Reliability
Our company works directly with mobile network operators, which means that messages and voice calls will be delivered without intermediaries
img
Blog

News & Events

Voice technology: stay in touch with your customers
29.03.2023
Voice technology: stay in touch with your customers
Modern business requires entrepreneurs and companies to actively use innovative technologies to improve communication with customers and incre
Voice Call Capabilities: How VoIP Technology Improves the Customer Experience
23.03.2023
Voice Call Capabilities: How VoIP Technology Improves th
According to VoIP statistics for 2023, 87% of companies use voice calls as the main communication channel when providing customer
How to build digital communications to improve customer experience
21.03.2023
How to build digital communications to improve customer
99% of modern business communication with customers has flowed into a virtual environment. This process has been driven by the corona crisis,
Improving your voice strategy: interaction between voice and text messaging
21.03.2023
Improving your voice strategy: interaction between voice
Companies are increasingly resorting to multiple channels of communication to communicate more effectively with customers. Thanks to the intr
Possibilities of Elon Musk
09.03.2023
Possibilities of Elon Musk's GPT-3 chatbot in creating m
In recent years, artificial intelligence (AI) has become an indispensable tool in many areas of human activity. For the most part, machines e
Voice messaging for business: how to improve the user experience and increase customer loyalty
09.03.2023
Voice messaging for business: how to improve the user ex
Modern users prefer to interact with real people who can professionally solve their problems. For businesses, this approach to communication
How participation in conferences helps companies to reach new heights (on the example of Decision Telecom
06.03.2023
How participation in conferences helps companies to reac
We at Decision Telecom know from our own experience how effective attendance at conferences is to grow and improve your busi
How to use SMS messaging to attract customers on International Women
06.03.2023
How to use SMS messaging to attract customers on Interna
March 8 is one of the most important international holidays in many countries. Online stores, delivery services, restaurants and other business
Interactive Voice Response (IVR): What it is and how it works
01.03.2023
Interactive Voice Response (IVR): What it is and how it
Every business aims to improve the customer experience and quality of service. With that goal in mind, companies often use automated technolog
How to independently assemble a database for SMS messaging without spending a penny
28.02.2023
How to independently assemble a database for SMS messagi
Mass SMS Messaging — is a marketing tool, the effectiveness of which primarily depends on the quality of customer databases
How to collect data for messaging so that later you do not collect money for the courts
27.02.2023
How to collect data for messaging so that later you do n
Brands resort to different methods of obtaining the personal information of customers. Unfortunately, not all methods are legal, which is why
When mass SMS messaging is not spam, and how to avoid becoming a spammer
22.02.2023
When mass SMS messaging is not spam, and how to avoid be
Mass SMS-messaging — it is a marketing tool used by companies of different sizes and from different areas. Do you remember th
SMS Messaging vs Voice Messaging for business: what to choose in 2023
22.02.2023
SMS Messaging vs Voice Messaging for business: what to c
Think about how many channels of communication you use in your everyday life? At least two of them are known to 67% of the Earth's p
Viber
20.02.2023
Viber's Latest Updates 2023 Bringing New Business Opport
Since the first launch of Rakuten Viber it has evolved from a simple instant messaging VoIP application to a feature-rich business platfo
7 Benefits of Using Viber Mass Messaging for Your Business
13.02.2023
7 Benefits of Using Viber Mass Messaging for Your Busine
Technology Viber for Business API — is a tool with which companies can send messages to a large number of people qu
How to create engaging content for mass messaging in Viber
10.02.2023
How to create engaging content for mass messaging in Vib
Viber messaging — it is a powerful tool that is able to reach millions of users in a short period of time. Creating interesting,
Types of messages in Viber that brands can use for their mass messaging
09.02.2023
Types of messages in Viber that brands can use for their
Mass messaging in Viber — is the sending of messages by companies to customers using the Viber platform for business . Unlike trad
How to use bulk messaging in Viber for Business: a step-by-step guide to creating a successful campaign
08.02.2023
How to use bulk messaging in Viber for Business: a step-
Viber leads the telecom market and is used by businesses for two purposes: customer service and product/service promotion. In recent years, co
4 ways to optimize communication of your team using Viber for business
07.02.2023
4 ways to optimize communication of your team using Vibe
Viber for Business is a messaging platform that helps businesses interact with their target audience in a safe and cost-effective way.
5 advantages of Viber messaging for business: how to increase conversion with the help of the popular messenger
03.02.2023
5 advantages of Viber messaging for business: how to inc
Viber messenger has massive potential for business as an effective channel of communication with the target audience. Given the app&#
4 Best Use Cases for WhatsApp Chatbot for Business
24.01.2023
4 Best Use Cases for WhatsApp Chatbot for Business
At the latest Traffic and Conversion Summit in San Diego, the role of chatbots in marketing development was actively discussed. In the next 5-1
How businesses can protect confidential customer data
24.01.2023
How businesses can protect confidential customer data
Every day, thousands of companies fall victim to cyber scammers. In business, the theft of confidential customer information can seriously tarn
VoIP telephony: what is it, how does it work and how to set it up for business
20.01.2023
VoIP telephony: what is it, how does it work and how to
Many companies use the VoIP protocol as a way to organize internal communication and interaction with customers. VoIP telephony
How Supermarkets Can Engage More Customers with SMS Marketing
20.01.2023
How Supermarkets Can Engage More Customers with SMS Mark
According to research, customer loyalty to the supermarkets with which they interact is 86% higher than to ordinary retail outlets. It is not
SMS Gateway API Features: What It Is and How It Works
19.01.2023
SMS Gateway API Features: What It Is and How It Works
The advent of short SMS transmission technology has had a positive impact on the telecommunications sector. Over time, there were requests to
VoIP for Business: Features and Benefits of the Technology
13.01.2023
VoIP for Business: Features and Benefits of the Technolo
One of the most popular telecommunication networks among companies is IP telephony. VoIP for business expands horizons an
Benefits of HLR Lookup for business that will make your messaging effective and save your advertising budget
13.01.2023
Benefits of HLR Lookup for business that will make your
Often companies, without realizing it, “drain” their marketing budget by sending advertising messages to invalid numbers. Without
What is WhatsApp Business API? Benefits of the world
10.01.2023
What is WhatsApp Business API? Benefits of the world's m
WhatsApp is the market leader in instant messaging applications. In 2022, the number of its active users reached 2 billion people
Who and when should set up the distribution of transactional SMS
06.01.2023
Who and when should set up the distribution of transacti
Transactional SMS are service messages that companies send in response to various customer actions to inform them about the start o
One Time Password (OTP) for authorization: does it guarantee complete data protection?
05.01.2023
One Time Password (OTP) for authorization: does it guara
The traditional protection of personal data using static passwords has not justified itself. Poor information hygiene of users who use weak pa
Omnichannel communications - what is it in simple words?
29.12.2022
Omnichannel communications - what is it in simple words?
According to research , 67% of buyers in the world use at least 3 channels to communicate with a business, and 39% use more than
SMS vs email messaging in e-commerce marketing: which communications are more effective?
28.12.2022
SMS vs email messaging in e-commerce marketing: which co
Every day, consumers see thousands of commercial ads on TV, social media, and billboards. According to G2 statisti
How to use storytelling in SMS messaging to increase conversions
28.12.2022
How to use storytelling in SMS messaging to increase con
Decision Telecom es un socio comercial confiable para resolver problemas de seguridad de la información. Utilice canales de SMS populares
How to properly A/B test SMS messaging
27.12.2022
How to properly A/B test SMS messaging
In the previous article , we looked at ways to track the effectiveness of SMS messaging during and after a campaign. But how
Three tools to track the effectiveness of SMS messaging for business
22.12.2022
Three tools to track the effectiveness of SMS messaging
Building customer loyalty and brand image is just one part of mobile advertising. The task of SMS marketing messaging is
Why your company needs two-factor authentication
21.12.2022
Why your company needs two-factor authentication
According to a study by Verizon, 81% of information leaks on the Internet are due to the low complexity of passwords. Two-factor authent
Why customers stop following your SMS messaging and how to avoid it
16.12.2022
Why customers stop following your SMS messaging and how
Do you always see a lot of SMS unsubscribes lately? Most brands face this problem due to the fact that bulk SMS blind often does more
How to increase conversions with marketing messaging in Viber and WhatsApp
15.12.2022
How to increase conversions with marketing messaging in
According to statistics, the open rate of messaging in Viber and WhatsApp (Open Rate) is four times higher t
Top 5 explosive ideas for Christmas and New Year
13.12.2022
Top 5 explosive ideas for Christmas and New Year's messa
On the threshold of Christmas and New Year, and for business this is the best time to remind customers about yourself. In the pre-holiday weeks,
A2P messaging: what is it and what are its benefits
12.12.2022
A2P messaging: what is it and what are its benefits
More than 90% of the world's population has access to mobile communications and the Internet. Every fourth owner of a smartphone spends mor
Meet ITD Telecom at Mobile World Congress Barcelona 2023!
21.11.2022
Meet ITD Telecom at Mobile World Congress Barcelona 2023
Barcelona, are you ready? From 27 February – 2 March, IT-Decision Telecom will attend the Mobile World Congress 2023 - the world’s
Events
Capacity Europe 2022 from IT-Decision Telecom!
21.10.2022
Capacity Europe 2022 from IT-Decision Telecom!
We are back from the continent’s largest telecoms networking conference - Capacity Europe! We were happy to meet with our Clients and Pa
Events
Meet ITD Telecom at Capacity Europe 2022!
28.09.2022
Meet ITD Telecom at Capacity Europe 2022!
We are happy to announce great news! This year Capacity Europe celebrates its 22th anniversary so the IT-Decision Telecom team can't miss
Events
WWC Madrid 2022 from IT-Decision Telecom!
26.09.2022
WWC Madrid 2022 from IT-Decision Telecom!
On September 21-22 the IT-Decision Telecom’s team visited Wholesale World Congress in Madrid. It was a really atmospheric and productive two
Events
ITD Telecom is a Bronze Community Member of Capacity Media!
01.09.2022
ITD Telecom is a Bronze Community Member of Capacity Med
We are happy to inform you that IT-Decision Telecom LLC is appear on Capacity brand new digital platform Global Wholesale Connect Community as a Br
Company News
Meet Decision Telecom New Website and Omnichannel Communication Platform!
30.08.2022
Meet Decision Telecom New Website and Omnichannel Commun
We are happy to announce great news! This year I T-Decision Telecom celebrates its 1 0 th anniversary ! All this t
Company News
ITD Telecom is the Gold Sponsor of WWC Madrid 2022!
23.08.2022
ITD Telecom is the Gold Sponsor of WWC Madrid 2022!
We are happy to announce, that this year on September 21-22, IT-Decision Telecom’s team will attend Wholesale World Congress 2022 in Madrid a
Events
 5 Useful Messaging Templates for your Business
11.07.2022
5 Useful Messaging Templates for your Business
Improve communication with customers, create a bright advertising campaign for your brand and increase your income with the help of the most reliab
SMS
 The highlights of ITW 2022 from IT-Decision Telecom!
06.06.2022
The highlights of ITW 2022 from IT-Decision Telecom!
Good news! Two weeks ago, our team represented IT-Decision Telecom at the largest annual ITW conference. It was a very productive and atmosphe
Events
Save Ukraine
IT-Decision Telecom supports Ukraine!
03.06.2022
IT-Decision Telecom supports Ukraine!
Dear Partners and Clients! IT-Decision Telecom continues its work, and also continues to provide support to Ukrainians in this difficult time
Save Ukraine
Company News
All news
Discover a universal way of communication with customers anywhere in the world

IT-Decision Telecom is the #1 choice for global customer support scaling. We help businesses achieve high results through popular communication channels. Let's discuss your project, shall we?

Efficient SMS service

Modern methods of doing business require the implementation of all existing innovative technologies. The widespread development of communication industry has made the service of sending SMS is truly the leading method. The ability to selectively provide information about the company increases interest in its services on the part of the customer. Thus, it achieves all the basic conditions that are good for a business focused on success. The commercial effect of the tool is felt almost immediately and is significantly reflected in the increase in sales and operating profits.

In large companies, the SMS API service often has a dedicated division that interacts with service providers. But most commercial projects are unable to afford the expanded staff of technical personnel. The company "IT-Decision Telecom" will allow the customer of any level to promulgate their services by using such a method as bulk messaging. A flexible pricing policy makes this approach affordable even for customers with a limited budget for advertising costs.

Provide information about yourself to the client

API abbreviation means application programming interface. This concept includes a complex package of operational commands for the interaction of programs with each other in remote mode. The technology is great for the distribution of SMS by brand for business. Proper adjustment of the service requires specialized knowledge, which have the staff of the company "IT-Decision Telecom". Sufficient work experience in this area, as well as possession of comprehensive knowledge in the field of computer networks is the key to good results. Our company trusts the implementation of products in all areas of business.

API text messaging uses short messages as the main tool. With a limited amount of text, it is possible to deliver the main brand message to the client. Even in a few sentences will include the main points, which may be useful to buyers of goods or services. There is no nastiness and information content of classic visual advertising, which can often withdraw by itself. In just a few seconds, the entire volume of a short announcement is captured, which means that the decision on its use can be taken as quickly as possible.

A quick start for your business

Among the main advantages of SMS API, useful for any business, are:

  • The efficiency of online services;
  • Wide audience;
  • Available cost of connection;
  • Discounts during a comprehensive or standing order of services;
  • The possibility of hunting the whole territory of Ukraine.

Standard advertising companies with the use of traditional mass media are very expensive. Posting ads on websites is effective, but can be blocked by users through special programs. In contrast, an SMS from a brand  will be accepted by the potential buyer by 100%. Taking into account the total volume of messages that are sent, the overall ratio of companies of this kind is very high and is definitely worth the price paid for it.

If you doubt the effectiveness of this method, positive feedback from our customers will be the best argument for its support. SMS overload via API will allow you to accelerate the pace of commercial growth of the company.

Modern methods of product promotion

Decision Telecom company offers the most required SMS APIs, which enable information dissemination by means of common short messages of mobile operators, Viber, WhatsApp and other popular messengers. Instant communication of important information to customers creates an image of a responsible company and provides a quick call for transactions or deals. The service has a flexible setting and allows you to easily adjust the work.

The advantage of working with us is a wide advisory support in the selection of the final set of tools. We professionally recommend what and how best to order for a particular business situation. There are certain peculiarities of the organization of the distribution, which are required to the accounting depending on the activity.

The total price for connection and setup is based on the full scope of work and its specific features. In any case, co-workers IT-Decision Telecom will not offer you a busy or duplicate the basic functions of the service. Our priority is to provide maximum customer support at the lowest possible cost to the customer, allowing for long-term productive cooperation.

We use cookies on our website to see how you interact with it. By Accepting, you consent to our use of such cookies. Cookie Policy