Sample - Slack Web API
GET/apps.event.authorizations.list

List authorizations for an event

Lists the app installations authorized to receive events for a specified event context. Supply event_context to identify the event and use cursor and limit to page through the available authorizations. The authenticated user must provide a token with the authorizations:read scope.

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

4 parameters
event_contextstringrequired
The event context for which you want to list visible app authorizations.
cursorstringoptional
Pagination cursor identifying the position from which to continue listing authorizations.
limitintegeroptional
Integer maximum number of authorizations to return in the page.
tokenstringrequired
Authentication token with the `authorizations:read` scope.

2 status codes
200Returns an object with `ok` set to true and the authorizations associated with the specified event context.
okbooleanrequired
Allowed:true
defaultReturns an object with `ok` set to false when the authorization list cannot be retrieved.
okbooleanrequired
Allowed:false

Error handling

event_context and token are required. The token must have the authorizations:read scope; use cursor and limit only when you need to paginate the authorization list.