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

List approved apps

Lists apps approved for an organization or workspace. Use limit to control the page size and pass the returned next_cursor in cursor to retrieve the next page.

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

5 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 approved apps to list.
enterprise_idstringoptional
The identifier of the organization whose approved apps to list.

2 status codes
200Returns an object with `ok` set to true and the approved-app listing data.
okbooleanrequired
Allowed:true
defaultReturns an object with `ok` set to false when the approved-app 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.