Skip to main content

Use Cases

These guides show how to build real integrations on the CloudSEK Integrations API. Each one maps a common goal to the endpoints that get you there, with working requests and the practical notes that save you a debugging session.

Every request and response shape here was verified against the live production API. The API Reference carries the full schemas, parameter lists, and error catalogue. When the two disagree, the reference wins.

Pick your integration

Use caseWhat it doesMain endpoints
Feed alerts into a SIEMPoll new alerts and load them into your SIEMGET /v2/incidents/alerts
Changelog lifecycle syncTrack every status, priority, and assignment changeGET /v2/changelog
Two-way ticketing syncKeep CloudSEK and your ITSM tool in the same statePATCH /v2/incidents/{id}
SOAR playbooksAcknowledge, assign, and remediate automaticallyPATCH /v2/incidents/{id}, POST /v2/events/{id}/remediate
Bulk triageUpdate many incidents or events in one async jobPOST /v2/incidents/bulk, GET /v2/jobs/{jobId}
ReconciliationResync current state after drift or downtimeGET /v2/snapshot/incident

Before you start

How the pieces fit together

A typical two-way integration chains several of these use cases:

  1. Ingest. Poll the alerts feed and open a ticket for each new alert.
  2. Sync outward. When a ticket changes, write the state back to CloudSEK.
  3. Sync inward. Poll the changelog to catch changes analysts make in CloudSEK, and update your tickets.
  4. Verify. Confirm your writes landed with snapshots.

The changelog and snapshot patterns are what keep both systems honest, so start with ingest, then layer sync and verification on top.