Meta WhatsAppExecution

Meta WhatsAppExecution

Certified

Send execution summary via WhatsApp

Sends a WhatsApp notification with the execution link, ID, namespace, flow name, start time, duration, status, and first failing task. Use in flows triggered by Flow Triggers; for errors tasks prefer WhatsAppIncomingWebhook.

yaml
type: io.kestra.plugin.meta.whatsapp.WhatsAppExecution

Send a WhatsApp notification on a failed flow execution.

yaml
id: failure_alert
namespace: company.team

tasks:
  - id: send_alert
    type: io.kestra.plugin.meta.whatsapp.WhatsAppExecution
    url: "{{ secret('WHATSAPP_WEBHOOK') }}"
    profileName: "MyProfile"
    from: 380999999999
    whatsAppIds:
        - "some waId"
        - "waId No2"
    executionId: "{{trigger.executionId}}"

triggers:
  - id: failed_prod_workflows
    type: io.kestra.plugin.core.trigger.Flow
    conditions:
      - type: io.kestra.plugin.core.condition.ExecutionStatus
        in:
          - FAILED
          - WARNING
      - type: io.kestra.plugin.core.condition.ExecutionNamespace
        namespace: prod
        prefix: true
Properties
Min length1

Incoming webhook URL

Webhook endpoint from the WhatsApp integration; supports expression rendering.

Custom fields to be added on notification

Custom message to be added on notification

Default{{ execution.id }}

The execution id to use

Default is the current execution, change it to {{ trigger.executionId }} if you use this task with a Flow trigger to use the original execution.

WhatsApp ID of the sender (Phone number)

Sender wa_id (phone number) inserted into the message payload.

Message ID

Optional message identifier included in the payload.

Options

The options to set to customize the HTTP client

Definitions
connectTimeoutstring

The time allowed to establish a connection to the server before failing.

connectionPoolIdleTimeoutstring
DefaultPT0S

The time an idle connection can remain in the client's connection pool before being closed.

defaultCharsetstring
DefaultUTF-8

The default charset for the request.

headersobject

HTTP headers

HTTP headers to include in the request

maxContentLengthintegerstring
Default10485760

The maximum content length of the response.

readIdleTimeoutstring
DefaultPT5M

The time allowed for a read connection to remain idle before closing it.

readTimeoutstring
DefaultPT10S

The maximum time allowed for reading data from the server before failing.

WhatsApp message payload

Raw JSON payload sent to the webhook; include contacts/messages per WhatsApp on-prem format.

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

Sender profile name

Profile name attached to contacts when whatsAppIds are provided.

WhatsApp recipient ID

Optional recipient_id field; use for replies or status updates.

Template variables

Values injected into the Pebble template before generating the payload.

Message

Plain text body; overrides template text when provided.

SubTypestring

Recipient WhatsApp IDs

List of wa_id values for contacts built into the payload.