v56

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-011,4581,08113.3 MB
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

idinteger required

The ID of the installation.

app_slugstring
client_idstring required
repository_selection'all' | 'selected' required

Describe whether all repositories have been selected or there's a selection involved

repositories_urlstring uri required
eventsstring[]
created_atstring date-time required
updated_atstring date-time required

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"
    }
  }
]