apps
List GitHub Apps installed on an enterprise-owned organization
Lists the GitHub App installations associated with the given enterprise-owned organization. This lists all GitHub Apps that have been installed on the organization, regardless of who owns the application.
This API can only be called by a GitHub App installed on the enterprise that owns the organization.
get/enterprises/{enterprise}/apps/organizations/{org}/installations
Path parameters
enterprisestring required
The slug version of the enterprise name.
orgstring required
The organization name. The name is not case sensitive.
Query parameters
per_pageinteger
The number of results per page (max 100). For more information, see "Using pagination in the REST API."
pageinteger
The page number of the results to fetch. For more information, see "Using pagination in the REST API."
Response
A list of GitHub App installations that have been granted access to the organization
Example response
[
{
"id": 1,
"app_slug": "github/github-actions",
"client_id": "Iv1.ab1112223334445c",
"repositories_url": "https://api.github.com/enterprises/acme-corp/apps/organizations/some-org/installations/1/repositories",
"permissions": {
"contents": "read",
"issues": "read",
"deployments": "write",
"single_file": "read"
}
}
]