List the organizations that the user is part of

GET /organizations

List all Bitrise organizations that the user is part of

Responses

GET /organizations
curl \
 --request GET 'https://api.bitrise.io/v0.1/organizations' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "avatar_icon_url": "string",
      "concurrency_count": 42,
      "name": "string",
      "owners": [
        {
          "email": "string",
          "slug": "string",
          "username": "string"
        }
      ],
      "slug": "string"
    }
  ]
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}