Learn about the webhooks sent by Automa
id
: Unique identifier for the webhook event.type
: The type of event (e.g., task.created
, proposal.accepted
).timestamp
: The time when the event occurred, in ISO 8601 format.data
: The event-specific data, which varies based on the event type.webhook-id
: the same as payload id
webhook-timestamp
: UNIX timestamp of when the event occurred (seconds since epoch)webhook-signature
: the signature(s) of the webhook used to verify the payloadx-automa-server-host
: the URL of the Automa server that sent the webhookwebhook-signature
header, which includes a version identifier and the signature in base64 format, separated by a comma (e.g., v1,d82n...
).
The signature is generated using your bot’s webhook secret (excluding the atma_whsec_
prefix). The content that is signed is a string made by concatenating the webhook ID, the timestamp in unix format, and the raw request body, joined by periods.