Skip to main content
GET
/
v1
/
auth
/
account
/
owned-organizations
List organisations the caller is the sole owner of
curl --request GET \
  --url http://127.0.0.1:8787/v1/auth/account/owned-organizations \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "organizations": [
      {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      }
    ]
  },
  "error": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.kayle.id/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Organisations where the caller is the only owner member. These would be cascade-deleted alongside the user if they delete their account.

data
object
required
error
object
required