How I created a Telnyx API transport for alerting

Good afternoon, team.

Worked on creating an alert transport with API using a service called Telnyx. I was able to get it to work with using the API option, but it felt like it was brute forced. Lots of tries with fails. Honestly, I know nothing about API and POST command, so it was probably my fault. But if there are any admins out there struggling with this service here is what I have put in my API transport.

Transport name: Telnyx-SMS
Transport type: API
Default alert: On/Off - depends on your preference
API Method: POST
API URL: https://api.telnyx.com/v2/messages - be careful this could change.
Options: did not set this
headers:
Content-Type=application/json
Accept=application/json
Authorization=Bearer
Body:
{
“from”: “”,
“to”: “”,
“text”: “(LNMS) {{ $title }}”
}

If you have any critiques on how I implemented this I would greatly appreciate them.

Thank you

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.