Skip to content

SIEM

Native SIEM webhook forwarding is not yet available in Robost.

Automated event forwarding to SIEM platforms is on the roadmap. No release date is currently committed.

While native SIEM forwarding is unavailable, you can poll the Robost alerts list programmatically. The backend exposes a GET /api/alerts endpoint that returns paginated alert records. Any authenticated session can call the endpoint — the only requirement is a valid clarity_session cookie obtained via POST /api/auth/login.

Typical steps:

  1. Authenticate with POST /api/auth/login to obtain a session cookie.
  2. Poll GET /api/alerts on a schedule and forward the results to your SIEM ingestion pipeline.
  3. Track the highest created_at timestamp you have processed to avoid re-ingesting old records.

This approach requires you to manage the polling loop and session renewal yourself. If you need event forwarding at scale, contact support to discuss your requirements and inform the roadmap.