List app requests for a team/workspace.
This API method can only be used on Enterprise Grid workspaces.
GEThttps://slack.com/api/admin.apps.requests.list
application/x-www-form-urlencoded
token
Authentication token bearing required scopes. Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.
xxxx-xxxxxxxxx-xxxx
Set cursor
to next_cursor
returned by the previous call to list items in the next page
5c3e53d5
The maximum number of items to return. Must be between 1 - 1000 both inclusive.
100
100
This App Management API method lists pending app install requests for a workspace. It only lists requests for installation that have not yet been approved or restricted.
This method requires an admin.*
scope. It's obtained through the normal OAuth process, but there are a few additional requirements. The scope must be requested by an Enterprise Grid admin or owner, and the OAuth install must take place on the entire Grid org, not an individual workspace. See the admin.apps:read
page for more detailed instructions.
team_id
is required if your Enterprise Grid org contains more than one workspace.
The is_user_app_collaborator
response field for each request may be used to determine whether the installer is also a collaborator on the app.
The developer_type
in each app helpfully describes its origin.
internal
: the app was developed as part of this Enterprise Grid or workspace.third_party
: the app was developed by a third party, such as (but not limited to) those found in the Slack Marketplace.slack
: the app was built with love by Slack. Hello!Typical success response
{
"ok": true,
"app_requests": [
{
"id": "Ar0XJGFLMLS",
"app": {
"id": "A061BL8RQ0",
"name": "Test App",
"description": "",
"help_url": "",
"privacy_policy_url": "https://testapp.com/privacy",
"app_homepage_url": "",
"app_directory_url": "https://acmecorp.slack.com/apps/A061BL8RQ0-test-app",
"is_app_directory_approved": true,
"is_internal": true,
"developer_type": "internal",
"socket_mode_enabled": false,
"icons": {
"image_32": "/cdn/157658203/img/testapp/service_32.png",
"image_36": "/cdn/157658203/img/testapp/service_36.png",
"image_48": "/cdn/157658203/img/testapp/service_48.png",
"image_64": "/cdn/157658203/img/testapp/service_64.png",
"image_72": "/cdn/157658203/img/testapp/service_72.png",
"image_96": "/cdn/157658203/img/testapp/service_96.png",
"image_128": "/cdn/157258203/img/testapp/service_128.png",
"image_192": "/cdn/157258203/img/testapp/service_192.png",
"image_512": "/cdn/15758203/img/testapp/service_512.png",
"image_1024": "/cdn/15258203/img/testapp/service_1024.png"
},
"additional_info": ""
},
"previous_resolution": null,
"user": {
"id": "W08RA9G5HR",
"name": "Jane Doe",
"email": "janedoe@example.com"
},
"team": {
"id": "T0M94LNUCR",
"name": "Acme Corp",
"domain": "acmecorp"
},
"scopes": [
{
"name": "incoming-webhook",
"description": "Post messages to specific channels in Slack",
"is_sensitive": false,
"token_type": "user"
}
],
"message": "Could you please install this app for me, it does everything I need.",
"is_user_app_collaborator": false,
"date_created": 1578956327
}
],
"response_metadata": {
"next_cursor": ""
}
}
Typical error response
{
"ok": false,
"error": "missing_scope",
"needed": "admin.apps:read",
"provided": "read,client,admin,identify,post,apps"
}
This table lists the expected errors that this method could return. However, other errors can be returned in the case where the service is down or other unexpected factors affect processing. Callers should always check the value of the ok
params in the response.
Error | Description |
---|---|
app_management_app_not_installed_on_org | The app management app must be installed on the org. |
enterprise_not_found | Returned when enterprise id is not found. |
feature_not_enabled | Returned when the Admin APIs feature is not enabled for this team |
invalid_cursor | Value passed for |
not_allowed | The user is not allowed to access this API method |
not_an_admin | This method is only accessible by org owners and admins |
team_not_found | Returned when team id is not found. |
too_many_teams_provided | Please provide only |
access_denied | Access to a resource specified in the request is denied. |
account_inactive | Authentication token is for a deleted user or workspace when using a |
deprecated_endpoint | The endpoint has been deprecated. |
ekm_access_denied | Administrators have suspended the ability to post a message. |
enterprise_is_restricted | The method cannot be called from an Enterprise. |
invalid_auth | Some aspect of authentication cannot be validated. Either the provided token is invalid or the request originates from an IP address disallowed from making the request. |
is_bot | This method cannot be called by a legacy bot. |
method_deprecated | The method has been deprecated. |
missing_scope | The token used is not granted the specific scope permissions required to complete this request. |
not_allowed_token_type | The token type used in this request is not allowed. |
not_authed | No authentication token provided. |
no_permission | The workspace token used in this request does not have the permissions necessary to complete the request. Make sure your app is a member of the conversation it's attempting to post a message to. |
org_login_required | The workspace is undergoing an enterprise migration and will not be available until migration is complete. |
token_expired | Authentication token has expired |
token_revoked | Authentication token is for a deleted user or workspace or the app has been removed when using a |
two_factor_setup_required | Two factor setup is required. |
accesslimited | Access to this method is limited on the current network |
fatal_error | The server could not complete your operation(s) without encountering a catastrophic error. It's possible some aspect of the operation succeeded before the error was raised. |
internal_error | The server could not complete your operation(s) without encountering an error, likely due to a transient issue on our end. It's possible some aspect of the operation succeeded before the error was raised. |
invalid_arg_name | The method was passed an argument whose name falls outside the bounds of accepted or expected values. This includes very long names and names with non-alphanumeric characters other than |
invalid_arguments | The method was either called with invalid arguments or some detail about the arguments passed is invalid, which is more likely when using complex arguments like blocks or attachments. |
invalid_array_arg | The method was passed an array as an argument. Please only input valid strings. |
invalid_charset | The method was called via a |
invalid_form_data | The method was called via a |
invalid_post_type | The method was called via a |
missing_post_type | The method was called via a |
ratelimited | The request has been ratelimited. Refer to the |
request_timeout | The method was called via a |
service_unavailable | The service is temporarily unavailable |
team_added_to_org | The workspace associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete. |
This table lists the expected warnings that this method will return. However, other warnings can be returned in the case where the service is experiencing unexpected trouble.
Warning | Description |
---|---|
missing_charset | The method was called via a |
superfluous_charset | The method was called via a |