Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/english/audit-logs.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/english/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 1 addition & 1 deletion docs/english/legacy/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
6 changes: 3 additions & 3 deletions docs/english/web.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.]

Expand Down