Get list of the addons for organization

GET /organizations/{organization-slug}/addons

List all the provisioned addons for organization

Path parameters

  • organization-slug string Required

    Organization slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • apps array[object]
        Hide apps attributes Show apps attributes object
        • icon string
        • plan object

          Additional properties are allowed.

          Hide plan attributes Show plan attributes object
          • features array[object]
            Hide features attributes Show features attributes object
            • available boolean
            • description string
            • quantity string
          • id string
          • name string
          • price integer
        • plan_started_at string
        • slug string
        • title string
      • documentation_url string
      • has_ui boolean
      • icon string
      • id string
      • is_beta boolean
      • summary string
      • title 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/{organization-slug}/addons
curl \
 --request GET 'https://api.bitrise.io/v0.1/organizations/{organization-slug}/addons' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "apps": [
        {
          "icon": "string",
          "plan": {
            "features": [
              {
                "available": true,
                "description": "string",
                "quantity": "string"
              }
            ],
            "id": "string",
            "name": "string",
            "price": 42
          },
          "plan_started_at": "string",
          "slug": "string",
          "title": "string"
        }
      ],
      "documentation_url": "string",
      "has_ui": true,
      "icon": "string",
      "id": "string",
      "is_beta": true,
      "summary": "string",
      "title": "string"
    }
  ]
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}