Skip to content
FeedbackDashboard

List organizations

$ stl orgs list
GET/v0/orgs

List organizations accessible to the current authentication method.

ReturnsExpand Collapse
OrgListResponse: object { data, has_more, next_cursor }
data: array of Org { display_name, enable_ai_commit_messages, object, slug }
display_name: string
enable_ai_commit_messages: boolean
object: "org"
slug: string
has_more: boolean
next_cursor: optional string

List organizations

stl orgs list
{
  "data": [
    {
      "display_name": "display_name",
      "enable_ai_commit_messages": true,
      "object": "org",
      "slug": "slug"
    }
  ],
  "has_more": true,
  "next_cursor": "next_cursor"
}
Returns Examples
{
  "data": [
    {
      "display_name": "display_name",
      "enable_ai_commit_messages": true,
      "object": "org",
      "slug": "slug"
    }
  ],
  "has_more": true,
  "next_cursor": "next_cursor"
}