integration_installation_requests
Creates, updates, deletes, gets or lists an integration_installation_requests resource.
Overview
| Name | integration_installation_requests |
| Type | Resource |
| Id | github.apps.integration_installation_requests |
Fields
The following fields are returned by SELECT queries:
- list_installation_requests_for_authenticated_app
List of integration installation requests
| Name | Datatype | Description |
|---|---|---|
id | integer | Unique identifier of the request installation. |
node_id | string | (example: MDExOkludGVncmF0aW9uMQ==) |
account | object | A GitHub user. (title: Simple User) |
created_at | string (date-time) | (example: 2022-07-08T16:18:44-04:00) |
requester | object | A GitHub user. (title: Simple User) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_installation_requests_for_authenticated_app | select | per_page, page | Lists all the pending installation requests for the authenticated GitHub App. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
page | integer | The page number of the results to fetch. For more information, see "Using pagination in the REST API." |
per_page | integer | The number of results per page (max 100). For more information, see "Using pagination in the REST API." |
SELECT examples
- list_installation_requests_for_authenticated_app
Lists all the pending installation requests for the authenticated GitHub App.
SELECT
id,
node_id,
account,
created_at,
requester
FROM github.apps.integration_installation_requests
WHERE per_page = '{{ per_page }}'
AND page = '{{ page }}'
;