StreamSyncEngage

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

FieldTypeRequiredDescription
channelstringyesTarget channel name
eventstringyesEvent type identifier
payloadobjectyesEvent data
recipient_idstringnoDeliver 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.