List organizations you belong to

## Usage

`circleci org list [flags]`

Aliases: `circleci org ls`

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- List all your organizations: 
  `circleci org list`
- Output as JSON for scripting: 
  `circleci org list --json`
- Extract just the slugs: 
  `circleci org list --json --jq '.[].slug'`

## Details

List all CircleCI organizations the authenticated user is a member of.

JSON fields: id, slug, name, vcs_type

