Get list of the addons for apps
List all the provisioned addons for the authorized apps
Path parameters
-
app-slug
string Required App slug
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"
}