From e6a1815892a1c199d098497fc338ad7eb81bd7ed Mon Sep 17 00:00:00 2001 From: Luke Russell Date: Mon, 3 Nov 2025 13:46:00 -0800 Subject: [PATCH 1/2] init --- docs/english/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/english/index.md b/docs/english/index.md index 7e5a47fb7..7fdbcd6e4 100644 --- a/docs/english/index.md +++ b/docs/english/index.md @@ -18,7 +18,7 @@ The Slack platform offers several APIs to build apps. Each Slack API delivers pa | Request Signature Verification | Verify incoming requests from the Slack API servers. | `slack_sdk.signature` | | UI Builders | Construct UI components using easy-to-use builders. | `slack_sdk.models` | -You can also view the [Python module documents](https://docs.slack.dev/python-slack-sdk/reference)! +You can also view the [Python module documents](https://docs.slack.dev/tools/python-slack-sdk/reference)! ## Getting help {#getting-help} From ac1f1d5bab9c6f9a39e69be31042f501fe12d76f Mon Sep 17 00:00:00 2001 From: Luke Russell Date: Thu, 11 Dec 2025 08:45:01 -0800 Subject: [PATCH 2/2] updates link --- docs/english/audit-logs.md | 2 +- docs/english/installation.md | 2 +- docs/english/legacy/auth.md | 2 +- docs/english/web.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) 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.]