API Reference
Full reference for the SSE ingest and management API.
Base URL
https://api.streamsyncengage.com/v1
All requests require an Authorization: Bearer <api_key> header.
Ingest an event
POST /events
Body
| Field | Type | Required | Description |
|---|---|---|---|
channel | string | yes | Target channel name |
event | string | yes | Event type identifier |
payload | object | yes | Event data |
recipient_id | string | no | Deliver to a specific recipient only |
Response
{ "id": "evt_abc123", "status": "queued" }
List channels
GET /channels
Returns all channels for the current App.
Get channel
GET /channels/:name
Delete channel
DELETE /channels/:name
Removes the channel and stops delivery. In-flight events are not retried.
List events
GET /events?channel=:name&limit=50
Returns recent events for a channel, newest first.