AISARAISAR
All webhooks

Funnels

Funnel stage created

funnel.stage.created

Fires when a new stage is added to a funnel. The payload includes both the stage itself and the parent funnel it belongs to.

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": "funnel.stage.created",
  "event_id": "evt_01JXXXXXXXXXXXXXXXXXXXXX",
  "timestamp": "2026-03-26T10:00:00.000000Z",
  "company_id": 1,
  "data": {
    "funnel": {
      "id": 3,
      "name": "Sales Pipeline"
    },
    "stage": {
      "id": 12,
      "name": "Negotiation",
      "order": 2,
      "funnel_id": 3
    }
  }
}

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": "funnel.stage.created",
  "event_id": "evt_01JXXXXXXXXXXXXXXXXXXXXX",
  "timestamp": "2026-03-26T10:00:00.000000Z",
  "company_id": 1,
  "data": {
    "funnel": {
      "id": 3,
      "name": "Sales Pipeline"
    },
    "stage": {
      "id": 12,
      "name": "Negotiation",
      "order": 2,
      "funnel_id": 3
    }
  }
}

Payload fields

FieldTypeDescription
funnel.idintegerFunnel ID
funnel.namestringFunnel name
stage.idintegerStage ID
stage.namestringStage name
stage.orderintegerStage order position within the funnel
stage.funnel_idintegerID of the parent funnel