diff --git a/docs/english/audit-logs.md b/docs/english/audit-logs.md index 6f10849cb..1d8b930ce 100644 --- a/docs/english/audit-logs.md +++ b/docs/english/audit-logs.md @@ -1,6 +1,6 @@ # Audit Logs API client -The [Audit Logs API](/admins/audit-logs-api) is a set of APIs that you can use to monitor what's happening in your [Enterprise Grid](/enterprise-grid) organization. +The [Audit Logs API](/admins/audit-logs-api) is a set of APIs that you can use to monitor what's happening in your [Enterprise Grid](/enterprise) organization. The Audit Logs API can be used by Security Information and Event Management (SIEM) tools to provide an analysis of how your Slack organization is being accessed. You can also use this API to write your own apps to see how members of your organization are using Slack. diff --git a/docs/english/installation.md b/docs/english/installation.md index bf818fe22..17bae95d2 100644 --- a/docs/english/installation.md +++ b/docs/english/installation.md @@ -69,7 +69,7 @@ import os SLACK_BOT_TOKEN = os.environ["SLACK_BOT_TOKEN"] ``` -Refer to our [best practices for security](/authentication/best-practices-for-security) page for more information. +Refer to our [best practices for security](/security) page for more information. ## Installing on a single workspace {#single-workspace} diff --git a/docs/english/legacy/auth.md b/docs/english/legacy/auth.md index 82671d042..23fe0aa23 100644 --- a/docs/english/legacy/auth.md +++ b/docs/english/legacy/auth.md @@ -31,7 +31,7 @@ import os SLACK_BOT_TOKEN = os.environ["SLACK_BOT_TOKEN"] ``` -Refer to our [best practices for security](/authentication/best-practices-for-security) page for more information. +Refer to our [best practices for security](/security) page for more information. ## Installing on a single workspace {#single-workspace} diff --git a/docs/english/web.md b/docs/english/web.md index 49d6c5871..b776ce5fd 100644 --- a/docs/english/web.md +++ b/docs/english/web.md @@ -57,9 +57,9 @@ See the [`chat.postEphemeral`](/reference/methods/chat.postEphemeral) API method You can have your app's messages stream in to replicate conventional AI chatbot behavior. This is done through three Web API methods: -* [`chat_startStream`](/reference/methods/chat.startstream) -* [`chat_appendStream`](/reference/methods/chat.appendstream) -* [`chat_stopStream`](/reference/methods/chat.stopstream) +* [`chat_startStream`](/reference/methods/chat.startStream) +* [`chat_appendStream`](/reference/methods/chat.appendStream) +* [`chat_stopStream`](/reference/methods/chat.stopStream) :::tip[The Python Slack SDK provides a [`chat_stream()`](https://docs.slack.dev/tools/python-slack-sdk/reference/web/client.html#slack_sdk.web.client.WebClient.chat_stream) helper utility to streamline calling these methods.]