Base URL:
https://api.streamlogia.comGet my organisations
GET /v1/orgs/mine
Returns organisations with the user’s role in each.
Response
Get an organisation
GET /v1/orgs/{orgId}
Path parameters
UUID of the organisation.
Response
Create an organisation
POST /v1/orgs
Any authenticated user can create an organisation. New accounts hit this endpoint automatically after the on-boarding step.
Request body
Display name — e.g.
"Acme Corp"URL-safe identifier, unique across the platform — e.g.
"acme-corp"Request
Response
| Status | Description |
|---|---|
401 | Not authenticated |
409 | Slug already taken |
Update an organisation
PUT /v1/orgs/{orgId}
Path parameters
UUID of the organisation.
Request body
New display name.
New slug — must be unique.
Request
Response
Delete an organisation
DELETE /v1/orgs/{orgId}
Path parameters
UUID of the organisation.
204 No Content with an empty body.
Next: create a project →
Projects are where logs live and API keys are scoped.