---
title: "Ingest Event"
method: POST
path: "/events"
tags: ["Event Bridge"]
---

# Ingest Event

`POST /events`

Generic event ingestion endpoint.

Routes standardized events to the appropriate internal handler based on `event_type`.
Supports idempotency via an optional `idempotency_key`.

## Request body

- EventRequest
  - `event_type` string, required — Event type, e.g. 'lead.created', 'invoice.created'
  - `source` string — Event source identifier
  - `idempotency_key` string, nullable — Optional key to prevent duplicate processing
  - `data` object, required — Event payload data

## Response `200`

Successful Response

- EventResponse
  - `event_id` string, uuid, required
  - `event_type` string, required
  - `status` string, required
  - `result` object, nullable
  - `error` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/ambivo/apis/ambivo-api.md) · [All operations](https://skmtc.net/ambivo/apis/ambivo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ambivo/ambivo-api/versions/165a6d16a9a0/schema)
