Get list of the addons for apps

GET /apps/{app-slug}/addons

List all the provisioned addons for the authorized apps

Path parameters

  • app-slug string Required

    App slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • description string
      • documentation_url string
      • has_ui boolean
      • icon string
      • id string
      • is_beta boolean
      • is_enabled boolean
      • login_url 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
      • scopes array[string]
      • setup_guide object

        Additional properties are allowed.

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