
Meta WhatsAppExecution
CertifiedSend execution summary via WhatsApp
Meta WhatsAppExecution
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.
type: io.kestra.plugin.meta.whatsapp.WhatsAppExecutionExamples
Send a WhatsApp notification on a failed flow execution.
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
url *Requiredstring
1Incoming webhook URL
Webhook endpoint from the WhatsApp integration; supports expression rendering.
customFields object
Custom fields to be added on notification
customMessage string
Custom message to be added on notification
executionId string
{{ 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.
from string
WhatsApp ID of the sender (Phone number)
Sender wa_id (phone number) inserted into the message payload.
messageId string
Message ID
Optional message identifier included in the payload.
options
Options
The options to set to customize the HTTP client
io.kestra.plugin.meta.AbstractMetaConnection-RequestOptions
The time allowed to establish a connection to the server before failing.
PT0SThe time an idle connection can remain in the client's connection pool before being closed.
UTF-8The default charset for the request.
java.nio.charset.Charset
HTTP headers
HTTP headers to include in the request
10485760The maximum content length of the response.
PT5MThe time allowed for a read connection to remain idle before closing it.
PT10SThe maximum time allowed for reading data from the server before failing.
payload string
WhatsApp message payload
Raw JSON payload sent to the webhook; include contacts/messages per WhatsApp on-prem format.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
profileName string
Sender profile name
Profile name attached to contacts when whatsAppIds are provided.
recipientId string
WhatsApp recipient ID
Optional recipient_id field; use for replies or status updates.
templateRenderMap object
Template variables
Values injected into the Pebble template before generating the payload.
textBody string
Message
Plain text body; overrides template text when provided.
whatsAppIds array
Recipient WhatsApp IDs
List of wa_id values for contacts built into the payload.