Get list of the apps for a user
List all the available apps for the given user. It needs the user slug that you can get from the GET /me endpoint.
GET
/users/{user-slug}/apps
curl \
--request GET 'https://api.bitrise.io/v0.1/users/{user-slug}/apps' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"avatar_url": "string",
"is_disabled": true,
"is_github_checks_enabled": true,
"is_public": true,
"owner": {
"account_type": "string",
"name": "string",
"slug": "string"
},
"project_type": "string",
"provider": "string",
"repo_owner": "string",
"repo_slug": "string",
"repo_url": "string",
"slug": "string",
"status": 42,
"title": "string"
}
],
"paging": {
"next": "string",
"page_item_limit": 42,
"total_item_count": 42
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}