List the organizations that the user is part of

GET /organizations

List all Bitrise organizations that the user is part of

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • avatar_icon_url string
      • concurrency_count integer
      • name string
      • owners array[object]
        Hide owners attributes Show owners attributes object
        • email string
        • slug string
        • username string
      • slug string
  • 400

    Bad Request

    Hide response attribute Show response attribute object
    • message string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not Found

    Hide response attribute Show response attribute object
    • message string
  • 500

    Internal Server Error

    Hide response attribute Show response attribute object
    • message string
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"
}