Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
mshafeeq
Contributor III
Contributor III

how to send SMS from Talend ?

hello All,

is there is any way to send SMS from Talend Studio or From TAC ?

i've checked some posts on the community but all of them outdated and links not working

thanks in advance.

Labels (2)
2 Replies
Anonymous
Not applicable

Hello @muhamd shafeeq​ 

It's impossible to send SMS directly from Studio or From TAC, this post suggests to use REST API or use some java program,

https://www.java-samples.com/showtutorial.php?tutorialid=22

Search SMS Rest API on internet and you can try talend component tRest or tHttpRequest to call REST API in a Job.

 

Regards

Shong

Devavella
Contributor
Contributor

I used sms.to with Talend by calling their REST API through tRestClient. Just set the method to POST, point it to the sms.to API endpoint, and include your API key in the headers. The body should have the number, sender name, and message. It works smoothly if you set Content-Type to application/json and make sure your payload format matches what sms.to needs.