TwilioAlert
TwilioAlert
yaml
type: "io.kestra.plugin.notifications.twilio.TwilioAlert"
Send a Twilio message using an notification API
Add this task to a list of errors
tasks to implement custom flow-level failure notifications. Check the Twilio documentation for more details..
Examples
Send a Twilio notification on a failed flow execution
yaml
id: unreliable_flow
namespace: company.team
tasks:
- id: fail
type: io.kestra.plugin.scripts.shell.Commands
runner: PROCESS
commands:
- exit 1
errors:
- id: alert_on_failure
type: io.kestra.plugin.notifications.twilio.TwilioAlert
url: "{{ secret('TWILIO_NOTIFICATION_URL') }}" # https://notify.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications
accountSID: "{{ secret('TWILIO_ACCOUNT_SID') }}"
authToken: "{{ secret('TWILIO_AUTH_TOKEN') }}"
payload: |
{
"identity": "0000001"
}
Send a Twilio message via incoming notification API
yaml
id: twilio_alert
namespace: company.team
tasks:
- id: send_twilio_message
type: io.kestra.plugin.notifications.twilio.TwilioAlert
url: "{{ secret('TWILIO_NOTIFICATION_URL') }}"
accountSID: "{{ secret('TWILIO_ACCOUNT_SID') }}"
authToken: "{{ secret('TWILIO_AUTH_TOKEN') }}"
payload: |
{
"identity": "0000001"
}
Properties
accountSID
- Type: string
- Dynamic: ✔️
- Required: ✔️
- Min length:
1
Twilio account SID
authToken
- Type: string
- Dynamic: ✔️
- Required: ✔️
- Min length:
1
Twilio authentication token
url
- Type: string
- Dynamic: ✔️
- Required: ✔️
- Min length:
1
Twilio notification URL
payload
- Type: string
- Dynamic: ✔️
- Required: ❌
Twilio message payload
Outputs
Definitions
Was this page helpful?