Get list of the apps for an organization
List all the available apps owned by a given organization. Find the organization URL of the organisations you are part of; be aware that the endpoint will not return any apps if the authenticated account is not a member of the given organisation.
Path parameters
-
org-slug
string Required Organization slug
Query parameters
-
sort_by
string Order of applications: sort them based on when they were created or the time of their last build
Values are
last_build_at
orcreated_at
. -
next
string Slug of the first app in the response
-
limit
integer Max number of elements per page (default: 50)
Maximum value is
50
. -
title
string The title of the app
-
project_type
string The project type of the app (eg. 'ios', 'android')
GET
/organizations/{org-slug}/apps
curl \
--request GET 'https://api.bitrise.io/v0.1/organizations/{org-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"
}