{"meta":{"title":"組織GitHubアプリのインストールを管理するための REST API","intro":"REST API を使用して、企業の組織にインストールされている GitHub Apps を管理します。","product":"REST API","breadcrumbs":[{"href":"/ja/enterprise-cloud@latest/rest","title":"REST API"},{"href":"/ja/enterprise-cloud@latest/rest/enterprise-admin","title":"企業管理"},{"href":"/ja/enterprise-cloud@latest/rest/enterprise-admin/organization-installations","title":"GitHub アプリのインストール"}],"documentType":"article"},"body":"# 組織GitHubアプリのインストールを管理するための REST API\n\nREST API を使用して、企業の組織にインストールされている GitHub Apps を管理します。\n\n> [!NOTE]\n> Most endpoints use `Authorization: Bearer <YOUR-TOKEN>` and `Accept: application/vnd.github+json` headers, plus `X-GitHub-Api-Version: 2026-03-10`. Curl examples below omit these standard headers for brevity.\n\n## Get enterprise-owned organizations that can have GitHub Apps installed\n\n```\nGET /enterprises/{enterprise}/apps/installable_organizations\n```\n\nList the organizations owned by the enterprise, intended for use by GitHub Apps that are managing applications across the enterprise.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n- **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n- **200** - A list of organizations owned by the enterprise on which the authenticated GitHub App is installed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/installable_organizations\n```\n\n**Response schema (Status: 200):**\n\nArray of `Installable Organization`:\n  * `id`: required, integer\n  * `login`: required, string\n  * `accessible_repositories_url`: string, format: uri\n\n## Get repositories belonging to an enterprise-owned organization\n\n```\nGET /enterprises/{enterprise}/apps/installable_organizations/{org}/accessible_repositories\n```\n\nList the repositories belonging to an enterprise-owned organization that can be made accessible to a GitHub App installed on that organization. This API provides a shallow list of repositories in the organization, allowing the caller to then add or remove those repositories to an installation in that organization.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n- **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n- **200** - A list of repositories owned by the enterprise organization on which the authenticated GitHub App is installed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/installable_organizations/ORG/accessible_repositories\n```\n\n**Response schema (Status: 200):**\n\nArray of `Accessible Repository`:\n  * `id`: required, integer, format: int64\n  * `name`: required, string\n  * `full_name`: required, string\n\n## List GitHub Apps installed on an enterprise-owned organization\n\n```\nGET /enterprises/{enterprise}/apps/organizations/{org}/installations\n```\n\nLists 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.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n- **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n- **200** - A list of GitHub App installations that have been granted access to the organization\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations\n```\n\n**Response schema (Status: 200):**\n\nArray of `Enterprise Organization Installation`:\n  * `id`: required, integer\n  * `app_slug`: string\n  * `client_id`: required, string\n  * `repository_selection`: required, string, enum: `all`, `selected`\n  * `repositories_url`: required, string, format: uri\n  * `permissions`: required, `App Permissions`:\n    * `actions`: string, enum: `read`, `write`\n    * `administration`: string, enum: `read`, `write`\n    * `artifact_metadata`: string, enum: `read`, `write`\n    * `attestations`: string, enum: `read`, `write`\n    * `checks`: string, enum: `read`, `write`\n    * `code_quality`: string, enum: `read`, `write`\n    * `codespaces`: string, enum: `read`, `write`\n    * `contents`: string, enum: `read`, `write`\n    * `dependabot_secrets`: string, enum: `read`, `write`\n    * `deployments`: string, enum: `read`, `write`\n    * `discussions`: string, enum: `read`, `write`\n    * `environments`: string, enum: `read`, `write`\n    * `issues`: string, enum: `read`, `write`\n    * `merge_queues`: string, enum: `read`, `write`\n    * `metadata`: string, enum: `read`, `write`\n    * `packages`: string, enum: `read`, `write`\n    * `pages`: string, enum: `read`, `write`\n    * `pull_requests`: string, enum: `read`, `write`\n    * `repository_custom_properties`: string, enum: `read`, `write`\n    * `repository_hooks`: string, enum: `read`, `write`\n    * `repository_projects`: string, enum: `read`, `write`, `admin`\n    * `secret_scanning_alerts`: string, enum: `read`, `write`\n    * `secrets`: string, enum: `read`, `write`\n    * `security_events`: string, enum: `read`, `write`\n    * `single_file`: string, enum: `read`, `write`\n    * `statuses`: string, enum: `read`, `write`\n    * `vulnerability_alerts`: string, enum: `read`, `write`\n    * `workflows`: string, enum: `write`\n    * `custom_properties_for_organizations`: string, enum: `read`, `write`\n    * `members`: string, enum: `read`, `write`\n    * `organization_administration`: string, enum: `read`, `write`\n    * `organization_custom_roles`: string, enum: `read`, `write`\n    * `organization_custom_org_roles`: string, enum: `read`, `write`\n    * `organization_custom_properties`: string, enum: `read`, `write`, `admin`\n    * `organization_copilot_seat_management`: string, enum: `read`, `write`\n    * `organization_copilot_agent_settings`: string, enum: `read`, `write`\n    * `organization_announcement_banners`: string, enum: `read`, `write`\n    * `organization_events`: string, enum: `read`\n    * `organization_hooks`: string, enum: `read`, `write`\n    * `organization_personal_access_tokens`: string, enum: `read`, `write`\n    * `organization_personal_access_token_requests`: string, enum: `read`, `write`\n    * `organization_plan`: string, enum: `read`\n    * `organization_projects`: string, enum: `read`, `write`, `admin`\n    * `organization_packages`: string, enum: `read`, `write`\n    * `organization_secrets`: string, enum: `read`, `write`\n    * `organization_self_hosted_runners`: string, enum: `read`, `write`\n    * `organization_user_blocking`: string, enum: `read`, `write`\n    * `email_addresses`: string, enum: `read`, `write`\n    * `followers`: string, enum: `read`, `write`\n    * `git_ssh_keys`: string, enum: `read`, `write`\n    * `gpg_keys`: string, enum: `read`, `write`\n    * `interaction_limits`: string, enum: `read`, `write`\n    * `profile`: string, enum: `write`\n    * `starring`: string, enum: `read`, `write`\n    * `enterprise_administration`: string, enum: `read`, `write`\n    * `enterprise_custom_properties_for_organizations`: string, enum: `read`, `write`, `admin`\n    * `enterprise_organization_installations`: string, enum: `read`, `write`\n    * `enterprise_organization_installation_repositories`: string, enum: `read`, `write`\n  * `events`: array of string\n  * `created_at`: required, string, format: date-time\n  * `updated_at`: required, string, format: date-time\n\n## Install a GitHub App on an enterprise-owned organization\n\n```\nPOST /enterprises/{enterprise}/apps/organizations/{org}/installations\n```\n\nInstalls any valid GitHub App on the specified organization owned by the enterprise. If the app is already installed on the organization, and is suspended, it will be unsuspended.\nIf the app has a pending installation request, they will all be approved.\nIf the app is already installed and has a pending update request, it will be updated to the latest version. If the app is now requesting repository permissions, it will be given access to the repositories listed in the request or fail if no repository_selection is provided.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n#### Body parameters\n\n- **`client_id`** (string) (required)\n  The Client ID of the GitHub App to install.\n\n- **`repository_selection`** (string) (required)\n  The repository selection for the GitHub App. Must be one of:\n\nall - the installation can access all repositories in the organization.\nselected - the installation can access only the listed repositories.\nnone - no repository permissions are requested. Only use when the app does not request repository permissions.\n  Can be one of: `all`, `selected`, `none`\n\n- **`repositories`** (array of strings)\n  The names of the repositories to which the installation will be granted access. This is the simple name of the repository, not the full name (e.g., hello-world not octocat/hello-world). This is only required when repository_selection is selected.\n\n### HTTP response status codes\n\n- **200** - A GitHub App installation that was installed previously.\n\n- **201** - A GitHub App installation.\n\n### Code examples\n\n#### Example of installing a GitHub App on an organization and granting access to all of its repositories.\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X POST \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations \\\n  -d '{\n  \"client_id\": \"Iv2abc123aabbcc\",\n  \"repository_selection\": \"all\"\n}'\n```\n\n**Response schema (Status: 200):**\n\n* `id`: required, integer\n* `account`: required, any of:\n  * **Simple User**\n    * `name`: string or null\n    * `email`: string or null\n    * `login`: required, string\n    * `id`: required, integer, format: int64\n    * `node_id`: required, string\n    * `avatar_url`: required, string, format: uri\n    * `gravatar_id`: required, string or null\n    * `url`: required, string, format: uri\n    * `html_url`: required, string, format: uri\n    * `followers_url`: required, string, format: uri\n    * `following_url`: required, string\n    * `gists_url`: required, string\n    * `starred_url`: required, string\n    * `subscriptions_url`: required, string, format: uri\n    * `organizations_url`: required, string, format: uri\n    * `repos_url`: required, string, format: uri\n    * `events_url`: required, string\n    * `received_events_url`: required, string, format: uri\n    * `type`: required, string\n    * `site_admin`: required, boolean\n    * `starred_at`: string\n    * `user_view_type`: string\n  * **Enterprise**\n    * `description`: string or null\n    * `html_url`: required, string, format: uri\n    * `website_url`: string or null, format: uri\n    * `id`: required, integer\n    * `node_id`: required, string\n    * `name`: required, string\n    * `slug`: required, string\n    * `created_at`: required, string or null, format: date-time\n    * `updated_at`: required, string or null, format: date-time\n    * `avatar_url`: required, string, format: uri\n* `repository_selection`: required, string, enum: `all`, `selected`\n* `access_tokens_url`: required, string, format: uri\n* `repositories_url`: required, string, format: uri\n* `html_url`: required, string, format: uri\n* `app_id`: required, integer\n* `client_id`: string\n* `target_id`: required, integer\n* `target_type`: required, string\n* `permissions`: required, `App Permissions`:\n  * `actions`: string, enum: `read`, `write`\n  * `administration`: string, enum: `read`, `write`\n  * `artifact_metadata`: string, enum: `read`, `write`\n  * `attestations`: string, enum: `read`, `write`\n  * `checks`: string, enum: `read`, `write`\n  * `code_quality`: string, enum: `read`, `write`\n  * `codespaces`: string, enum: `read`, `write`\n  * `contents`: string, enum: `read`, `write`\n  * `dependabot_secrets`: string, enum: `read`, `write`\n  * `deployments`: string, enum: `read`, `write`\n  * `discussions`: string, enum: `read`, `write`\n  * `environments`: string, enum: `read`, `write`\n  * `issues`: string, enum: `read`, `write`\n  * `merge_queues`: string, enum: `read`, `write`\n  * `metadata`: string, enum: `read`, `write`\n  * `packages`: string, enum: `read`, `write`\n  * `pages`: string, enum: `read`, `write`\n  * `pull_requests`: string, enum: `read`, `write`\n  * `repository_custom_properties`: string, enum: `read`, `write`\n  * `repository_hooks`: string, enum: `read`, `write`\n  * `repository_projects`: string, enum: `read`, `write`, `admin`\n  * `secret_scanning_alerts`: string, enum: `read`, `write`\n  * `secrets`: string, enum: `read`, `write`\n  * `security_events`: string, enum: `read`, `write`\n  * `single_file`: string, enum: `read`, `write`\n  * `statuses`: string, enum: `read`, `write`\n  * `vulnerability_alerts`: string, enum: `read`, `write`\n  * `workflows`: string, enum: `write`\n  * `custom_properties_for_organizations`: string, enum: `read`, `write`\n  * `members`: string, enum: `read`, `write`\n  * `organization_administration`: string, enum: `read`, `write`\n  * `organization_custom_roles`: string, enum: `read`, `write`\n  * `organization_custom_org_roles`: string, enum: `read`, `write`\n  * `organization_custom_properties`: string, enum: `read`, `write`, `admin`\n  * `organization_copilot_seat_management`: string, enum: `read`, `write`\n  * `organization_copilot_agent_settings`: string, enum: `read`, `write`\n  * `organization_announcement_banners`: string, enum: `read`, `write`\n  * `organization_events`: string, enum: `read`\n  * `organization_hooks`: string, enum: `read`, `write`\n  * `organization_personal_access_tokens`: string, enum: `read`, `write`\n  * `organization_personal_access_token_requests`: string, enum: `read`, `write`\n  * `organization_plan`: string, enum: `read`\n  * `organization_projects`: string, enum: `read`, `write`, `admin`\n  * `organization_packages`: string, enum: `read`, `write`\n  * `organization_secrets`: string, enum: `read`, `write`\n  * `organization_self_hosted_runners`: string, enum: `read`, `write`\n  * `organization_user_blocking`: string, enum: `read`, `write`\n  * `email_addresses`: string, enum: `read`, `write`\n  * `followers`: string, enum: `read`, `write`\n  * `git_ssh_keys`: string, enum: `read`, `write`\n  * `gpg_keys`: string, enum: `read`, `write`\n  * `interaction_limits`: string, enum: `read`, `write`\n  * `profile`: string, enum: `write`\n  * `starring`: string, enum: `read`, `write`\n  * `enterprise_administration`: string, enum: `read`, `write`\n  * `enterprise_custom_properties_for_organizations`: string, enum: `read`, `write`, `admin`\n  * `enterprise_organization_installations`: string, enum: `read`, `write`\n  * `enterprise_organization_installation_repositories`: string, enum: `read`, `write`\n* `events`: required, array of string\n* `created_at`: required, string, format: date-time\n* `updated_at`: required, string, format: date-time\n* `single_file_name`: required, string or null\n* `has_multiple_single_files`: boolean\n* `single_file_paths`: array of string\n* `app_slug`: required, string\n* `suspended_by`: required, any of:\n  * **null**\n  * **Simple User** (see above)\n* `suspended_at`: required, string or null, format: date-time\n* `contact_email`: string or null\n\n## Uninstall a GitHub App from an enterprise-owned organization\n\n```\nDELETE /enterprises/{enterprise}/apps/organizations/{org}/installations/{installation_id}\n```\n\nUninstall a GitHub App from an organization. Any app installed on the organization can be removed.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`installation_id`** (integer) (required)\n  The unique identifier of the installation.\n\n### HTTP response status codes\n\n- **204** - An empty response indicates that the installation was successfully removed.\n\n- **403** - Forbidden\n\n- **404** - Resource not found\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X DELETE \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations/1\n```\n\n**Response schema (Status: 204):**\n\n## Get the repositories accessible to a given GitHub App installation\n\n```\nGET /enterprises/{enterprise}/apps/organizations/{org}/installations/{installation_id}/repositories\n```\n\nLists the repositories accessible to a given GitHub App installation on an enterprise-owned organization.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`installation_id`** (integer) (required)\n  The unique identifier of the installation.\n\n- **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n- **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n- **200** - A list of repositories owned by the enterprise organization to which the installation has access.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations/1/repositories\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Get repositories belonging to an enterprise-owned organization](#get-repositories-belonging-to-an-enterprise-owned-organization).\n\n## Toggle installation repository access between selected and all repositories\n\n```\nPATCH /enterprises/{enterprise}/apps/organizations/{org}/installations/{installation_id}/repositories\n```\n\nToggle repository access for a GitHub App installation between all repositories and selected repositories. You must provide at least one repository when changing the access to 'selected'. If you change the access to 'all', the repositories list must not be provided.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`installation_id`** (integer) (required)\n  The unique identifier of the installation.\n\n#### Body parameters\n\n- **`repository_selection`** (string) (required)\n  One of either 'all' or 'selected'\n  Can be one of: `all`, `selected`\n\n- **`repositories`** (array of strings)\n  The repository names to add to the installation. Only required when repository_selection is 'selected'\n\n### HTTP response status codes\n\n- **200** - The GitHub App installation that was updated.\n\n### Code examples\n\n#### Change the repositories accessible to a GitHub App from 'all repositories' to a specified subset.\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X PATCH \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations/1/repositories \\\n  -d '{\n  \"repository_selection\": \"selected\",\n  \"repositories\": [\n    \"hello-world\",\n    \"hello-world-2\"\n  ]\n}'\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Install a GitHub App on an enterprise-owned organization](#install-a-github-app-on-an-enterprise-owned-organization).\n\n## Grant repository access to an organization installation\n\n```\nPATCH /enterprises/{enterprise}/apps/organizations/{org}/installations/{installation_id}/repositories/add\n```\n\nGrant repository access to an organization installation. You can add up to 50 repositories at a time. If the installation already has access to the repository, it will not be added again.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`installation_id`** (integer) (required)\n  The unique identifier of the installation.\n\n#### Body parameters\n\n- **`repositories`** (array of strings) (required)\n  The repository names to add to the installation.\n\n### HTTP response status codes\n\n- **200** - A list of repositories which the authenticated GitHub App should be granted access to.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X PATCH \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations/1/repositories/add \\\n  -d '{\n  \"repositories\": [\n    \"hello-world\",\n    \"hello-world-2\"\n  ]\n}'\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Get repositories belonging to an enterprise-owned organization](#get-repositories-belonging-to-an-enterprise-owned-organization).\n\n## Remove repository access from an organization installation\n\n```\nPATCH /enterprises/{enterprise}/apps/organizations/{org}/installations/{installation_id}/repositories/remove\n```\n\nRemove repository access from a GitHub App installed on an organization. You can remove up to 50 repositories at a time. You cannot remove repositories from an app installed on all repositories, nor can you remove the last repository for an app. If you attempt to do so, the API will return a 422 Unprocessable Entity error.\nThis API can only be called by a GitHub App installed on the enterprise that owns the organization.\n\n### Parameters\n\n#### Headers\n\n- **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n- **`enterprise`** (string) (required)\n  The slug version of the enterprise name.\n\n- **`org`** (string) (required)\n  The organization name. The name is not case sensitive.\n\n- **`installation_id`** (integer) (required)\n  The unique identifier of the installation.\n\n#### Body parameters\n\n- **`repositories`** (array of strings) (required)\n  The repository names to remove from the installation.\n\n### HTTP response status codes\n\n- **200** - A list of repositories which the authenticated GitHub App has lost access to.\n\n- **422** - The request was well-formed but was unable to be followed due to semantic errors. This can happen if you attempt to remove a repository from an installation that has access to all repositories, or if you attempt to remove the last repository from an installation.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X PATCH \\\n  https://api.github.com/enterprises/ENTERPRISE/apps/organizations/ORG/installations/1/repositories/remove \\\n  -d '{\n  \"repositories\": [\n    \"hello-world\",\n    \"hello-world-2\"\n  ]\n}'\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Get repositories belonging to an enterprise-owned organization](#get-repositories-belonging-to-an-enterprise-owned-organization)."}