## List `orgs.list() -> OrgListResponse` **get** `/v0/orgs` List organizations accessible to the current authentication method. ### Returns - `class OrgListResponse` - `data: Array[Org]` - `display_name: String` - `enable_ai_commit_messages: bool` - `object: :org` - `:org` - `slug: String` - `has_more: bool` - `next_cursor: String` ### Example ```ruby require "stainless_v0" stainless = StainlessV0::Client.new( api_key: "My API Key", environment: "staging" # defaults to "production" ) orgs = stainless.orgs.list puts(orgs) ```