Twilio TwilioAlert

Twilio TwilioAlert

Certified

Send a Twilio Notify message

Post a payload to the Twilio Notify API using the provided service URL with Account SID/Auth Token basic auth. Use in errors handlers for flow-level alerts; for Flow-triggered execution summaries, prefer TwilioExecution. See the Twilio documentation for payload details.

yaml
type: io.kestra.plugin.twilio.notify.TwilioAlert

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.twilio.notify.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.twilio.notify.TwilioAlert
    url: "{{ secret('TWILIO_NOTIFICATION_URL') }}"
    accountSID: "{{ secret('TWILIO_ACCOUNT_SID') }}"
    authToken: "{{ secret('TWILIO_AUTH_TOKEN') }}"
    payload: |
      {
        "identity": "0000001"
      }
Properties
Min length1

Twilio Account SID

Used with authToken for HTTP basic authentication

Min length1

Twilio Auth Token

Secret token paired with the Account SID; store as a secret

Options

Optional HTTP client overrides for timeouts, charset, headers, and max content length

Definitions
connectTimeoutstring

Connect timeout

Time allowed to establish the HTTP connection before failing

connectionPoolIdleTimeoutstring
DefaultPT0S

Connection pool idle timeout

Time an idle pooled connection stays open before closing; defaults to 0s (no TTL)

defaultCharsetstring
DefaultUTF-8

Default request charset

Charset applied to requests when not specified; defaults to UTF-8

headersobject

HTTP headers

HTTP headers to include in the request

maxContentLengthintegerstring
Default10485760

Max response size

Maximum response content length in bytes; defaults to 10MB

readIdleTimeoutstring
DefaultPT5M

Read idle timeout

How long a read connection may stay idle before closing; defaults to 5m

readTimeoutstring
DefaultPT10S

Read timeout

Maximum time to read data before failing; defaults to 10s

Notify payload body

Raw JSON payload sent to Twilio; overrides templated fields when provided

Reference (ref) of the pluginDefaults to apply to this task.