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: prod

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_ALERT') }}" # https://notify.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications
    payload: |
      {
        "identity": "0000001"
      }

Send a Twilio message via incoming notification API

yaml
id: twilio_alert
namespace: dev

tasks:
  - id: send_twilio_message
    type: io.kestra.plugin.notifications.twilio.TwilioAlert
    url: "{{ secret('TWILIO_ALERT') }}"
    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