AISARAISAR
All webhooks

Automations

Automation created

automation.created

Fires when a new automation is created. Use this event to keep track of changes to the set of automated workflows in a company.

HTTP request

AISAR sends a signed POST request to your webhook_url:

http
POST {webhook_url}
Content-Type: application/json
X-AISAR-Signature: sha256=...

{
  "event": "automation.created",
  "event_id": "evt_01JXXXXXXXXXXXXXXXXXXXXX",
  "timestamp": "2026-03-26T10:00:00.000000Z",
  "company_id": 1,
  "data": {
    "automation": {
      "id": 5,
      "name": "Welcome Message",
      "status": "active",
      "created_at": "2026-03-26T10:00:00.000000Z"
    }
  }
}

The X-AISAR-Signature header carries an HMAC-SHA256 signature of the request body — use it to verify the request came from AISAR.

Example payload

json
{
  "event": "automation.created",
  "event_id": "evt_01JXXXXXXXXXXXXXXXXXXXXX",
  "timestamp": "2026-03-26T10:00:00.000000Z",
  "company_id": 1,
  "data": {
    "automation": {
      "id": 5,
      "name": "Welcome Message",
      "status": "active",
      "created_at": "2026-03-26T10:00:00.000000Z"
    }
  }
}

Payload fields

FieldTypeDescription
automation.idintegerAutomation ID
automation.namestringAutomation name
automation.statusstringStatus: `active` or `inactive`
automation.created_atstringISO 8601 creation timestamp