Trusted by leading
brands globally!
Streamline engagement flow by integrating WhatsApp and other channels with D2C, CRM, Marketing, relevant tools.
Integrations
Seamlessly showcase relevant products and services with our APIs, enhancing customer engagement and driving conversions
Streamline engagement flow by integrating WhatsApp and other channels with D2C, CRM, Marketing, relevant tools.
Streamline engagement flow by integrating WhatsApp and other channels with D2C, CRM, Marketing, relevant tools.
Automate texting with our APIs for seamless sending and receiving. Access sample codes in Csharp-Restsharp, Java, JavaScript-Fetch, and more.
Import Java.Io.*;
Import Okhttp3.*;
Public Class Main {
Public Static Void Main(String []Args) Throws Ioexception{
Okhttpclient Client = New Okhttpclient().Newbuilder()
.Build();
Mediatype Mediatype = Mediatype.Parse(“Application/Json”);
Requestbody Body = Requestbody.Create(Mediatype, “{\”Sender_Id\”: \”TESTAC\”,\”To\”: [9999999999],\”Route\”: \”Transactional\”,\”Message\”: \”Welcome To TS. Panel Link Https://Trustsignal.Io. Special Discount Link Sent On Registered Email ID.\\N\\Nteam TS\”,\”Template_Id\”: \”1507163121212121212\”}”);
Request Request = New Request.Builder()
.Url(“Https://Api.Trustsignal.Io/V1/Sms?Api_Key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX”)
.Method(“POST”, Body)
.Addheader(“Content-Type”, “Application/Json”)
.Build();
Response Response = Client.Newcall(Request).Execute();
System.Out.Println(Response.Body().String());
}
}
var myHeaders = new Headers();
myHeaders.append(“Content-Type”, “application/json”);
var raw = JSON.stringify({
“sender_id”: “TESTAC”,
“to”: [
9999999999
],
“route”: “transactional”,
“message”: “Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\n\nTeam TS”,
“template_id”: “1507163121212121212”
});
var requestOptions = {
method: ‘POST’,
headers: myHeaders,
body: raw,
redirect: ‘manual’
};
fetch(“https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX”, requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log(‘error’, error));
var axios = require(‘axios’);
var data = JSON.stringify({
“sender_id”: “TESTAC”,
“to”: [
9999999999
],
“route”: “transactional”,
“message”: “Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\n\nTeam TS”,
“template_id”: “1507163121212121212”
});
var config = {
method: ‘post’,
url: ‘https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX’,
headers: {
‘Content-Type’: ‘application/json’
},
data: data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
var axios = requir
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => ‘https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX’,
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 =>'{
“sender_id”: “TESTAC”,
“to”: [
9999999999
],
“route”: “transactional”,
“message”: “Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\\n\\nTeam TS”,
“template_id”: “1507163121212121212”
}’,
CURLOPT_HTTPHEADER => array(
‘Content-Type: application/json’
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
e(‘axios’);
var data = JSON.stringify({
“sender_id”: “TESTAC”,
“to”: [
9999999999
],
“route”: “transactional”,
“message”: “Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\n\nTeam TS”,
“template_id”: “1507163121212121212”
});
var config = {
method: ‘post’,
url: ‘https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX’,
headers: {
‘Content-Type’: ‘application/json’
},
data: data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
import requests
import json
url = “https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX”
payload = json.dumps({
“sender_id”: “TESTAC”,
“to”: [
9999999999
],
“route”: “transactional”,
“message”: “Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\n\nTeam TS”,
“template_id”: “1507163121212121212”
})
headers = {
‘Content-Type’: ‘application/json’
}
response = requests.request(“POST”, url, headers=headers, data=payload)
print(response.text)
using System;
using RestSharp;
namespace HelloWorldApplication {
class HelloWorld {
static void Main(string[] args) {
var client = new RestClient(“https://api.trustsignal.io/v1/sms?api_key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX”);
client.Timeout = -1;
client.FollowRedirects = false;
var request = new RestRequest(Method.POST);
request.AddHeader(“Content-Type”, “application/json”);
var body = @”{“”sender_id””: “”TESTAC””,””to””: [9999999999],””route””: “”transactional””,””message””: “”Welcome to TS. Panel Link https://trustsignal.io. Special Discount Link sent on Registered Email ID.\n\nTeam TS””,””template_id””: “”1507163121212121212″”}”;
request.AddParameter(“application/json”, body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
}
}
}
We stands proudly as an award-winning company, consistently pushing the boundaries of innovation to enhance the way businesses communicate.
Explore our achievements as a global CPaaS leader.
ExcellentBased on 23 reviewsKshitij Ranjan2024-03-05Amazing services! Best B2B SMS providers out there :)gargi raina2024-02-12Fair and quick SMS service.Santosh Gangatiware2024-02-11TrustSignal is top-notch! Their customer service team is exceptional, always ready to assist with any business queries. Highly recommended for their reliability and support.Simran Mishra2024-02-09TrustSignal is a great platform for a business's SMS communications. Its been more than a year that we are integrated with TrustSignal and their service is amazing. Integration was smooth, our day to day templates are approved on time even with a short notice. The support team is excellent, they respond immediately and solve the problem at hand real quick. Extremely happy with their service!santhosh.p santhu2024-02-08Good service by trustsignal team.Always there to help to solve business problems.Kirankumar BM2024-02-08Good experience in working with Trust signal for handling the sms. Trusted partner to handle any kind of campaigns. Supportive team and can get assistance at any given point of time. Highly recommended for any kind of communication activities since the delivery rate is considerably good.Bhavik Naik2024-02-08One of the best in Business. Always there to help in any situations.Nishanth Kanna2024-02-07Good team who're always prompt and crisp to provide solutions to any operational blocker over their seemless product as well
Resources
Headquarter
First Floor, Plot No.40, Gate 3, Okhla Phase III, Okhla Industrial Estate, New Delhi, Delhi 110020
USA
Company :: CloudStuff, Inc
Registered Address :: 2035 Sunset Lake Road, Suite B-2, Newark, Delaware 19702, USA
EIN : 61-1880678
United Arab Emirates
TrustSignal technologies LLC 1712 Regal Tower, Business Bay Dubai , UAE
Mumbai
Oberoi Commerz II WeWork 1st floor 1, Mohan Gokhale Rd Colony No 2 Mumbai, MH 400063
We focus on giving you a great platform with programmable APIs that
makes integration easy while helping you reach, manage and engage your customers instantly.
© 2024 TrustSignal. All rights reserved.