Skip to content

Management

Event store lifecycle management

Event store lifecycle management

List event stores

Retrieves a list of all event stores for the authenticated tenant

GET /api/event-stores
Authorization: Bearer YOUR_JWT_TOKEN
Content-Type: application/json
  • 200 - Event stores retrieved successfully
  • 401 - Unauthorized - Invalid or missing JWT token

Create event store

Creates a new event store for the authenticated tenant

POST /api/event-stores
Authorization: Bearer YOUR_JWT_TOKEN
Content-Type: application/json
{
"example": "request body structure here"
}
  • 201 - Event store created successfully
  • 400 - Bad request - Invalid input
  • 409 - Conflict - Event store already exists