Get a specified organization.

GET /organizations/{org-slug}

Get a specified Bitrise organization that the user is part of.

Path parameters

  • org-slug string Required

    The organization slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data object

      Additional properties are allowed.

      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/{org-slug}
curl \
 --request GET 'https://api.bitrise.io/v0.1/organizations/{org-slug}' \
 --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"
}