Skip to main content
GET
/
console
/
organizations
List Organizations
curl --request GET \
  --url https://api.example.com/console/organizations
[
  {
    "organization_id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "status": "bootstrapping",
    "bootstrap_error": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Successful Response

organization_id
string
required
name
string
required
slug
string
required
created_at
string<date-time>
updated_at
string<date-time>
status
enum<string>
default:bootstrapping

Lifecycle status of an organization.

Bootstrap states: BOOTSTRAPPING: Organization row exists, bootstrap worker has not yet finished provisioning tenant namespace resources. READY: Organization is fully provisioned and usable. BOOTSTRAP_FAILED: Bootstrap worker exhausted its retry budget. Recovery is manual during private beta: operators contact support or clear the failure via direct SurrealDB intervention.

Teardown states: DEACTIVATING: Cleanup worker is tearing down tenant resources. DELETED: Organization fully cleaned up.

Available options:
bootstrapping,
ready,
bootstrap_failed,
deactivating,
deleted
bootstrap_error
string | null