Skip to content

Organizations

Organizations are the top-level tenant entity. Every resource (endpoints, events, API keys) belongs to an organization.

Get Organization

GET /api/v1/orgs

Returns the organization associated with the current API key.

Response

json
{
  "id": "7a337feef0633bcfa20ae1b0ba3e0372",
  "name": "My Company",
  "plan": "free",
  "created_at": "2026-05-26T12:00:00Z"
}

Update Organization

PATCH /api/v1/orgs

Request Body

json
{
  "name": "My Company Inc."
}

Response

json
{
  "id": "7a337feef0633bcfa20ae1b0ba3e0372",
  "name": "My Company Inc.",
  "plan": "free",
  "updated_at": "2026-05-26T13:00:00Z"
}

Released under the MIT License.