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.
EXCELLENT Based on 23 reviews Kshitij Ranjan2024-03-05 Amazing services! Best B2B SMS providers out there :) gargi raina2024-02-12 Fair and quick SMS service. Santosh Gangatiware2024-02-11 TrustSignal 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-09 TrustSignal 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-08 Good service by trustsignal team.Always there to help to solve business problems. Kirankumar BM2024-02-08 Good 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-08 One of the best in Business. Always there to help in any situations. Nishanth Kanna2024-02-07 Good 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.