Skip to main content

admin.audit.anomaly.allow.getItem method

Welcome to the new home of Slack developer docs!

We're still building and not all features are available quite yet. Enjoy this peek into the future!

Not ready for the future? Return to the past at api.slack.com.

Usage info

API to allow enterprise grid admins to read the allow list of IP blocks and ASNs from the enterprise configuration.

The token argument is required and is a session token (xoxc- or xoxp-).

Please note that the xoxp- token must be:

  • created by an org admin
  • have a user token scope of admin

Additionally, the app using the token must be installed at the org level.

Building your HTTP request {#http_request}:

Example Request:

	{
"token":"xoxp-..."
}

Example Response:

	{
"ok":true,
"trusted_cidr":["8.8.8.8/24","8.8.4.4/22"],
"trusted_asns":[12345,12344]
}

Response