Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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.