Sample - Slack Web API
GET/admin.apps.requests.list

List app installation requests

Lists app installation requests for a team or workspace. Use limit to control the page size and pass the returned next_cursor in cursor to retrieve subsequent requests.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

4 parameters
tokenstringrequired
Authentication token with the `admin.apps:read` scope.
limitintegeroptional
Maximum number of items to return. Must be between 1 and 1000 when provided.
cursorstringoptional
Pagination cursor from the previous response's `next_cursor` value.
team_idstringoptional
The identifier of the workspace whose app requests to list.

2 status codes
200Returns an object with `ok` set to true and the app-request listing data.
okbooleanrequired
Allowed:true
defaultReturns an object with `ok` set to false when the app-request listing cannot be completed.
okbooleanrequired
Allowed:false

Error handling

The token must carry the admin.apps:read scope. limit must be an integer from 1 through 1000 when provided, and cursor must contain a cursor returned by a previous response.