For the complete documentation index, see llms.txt. This page is also available as Markdown.

Configuring Slack Notifications

This section demonstrates how to install the Slack App in your Slack workspace and receive notifications to your Slack channels and direct messages.

Prerequisites

  • Make sure you have sufficient permissions for your Slack workspace to install the Slack App.

  • Make sure you have an NVIDIA Run:ai API token. See How to authenticate to the API for more details.

Install a New Slack App

  1. Copy the access token (should start with xoxe.xoxp)

  2. Send a POST request using the Create Slack app API and add the access token:

{
  "accessToken": "THE_GENERATED_ACCESS_TOKEN_FROM_PREVIOUS_STEP"
}
  1. The request creates your Slack App and returns the newly created Slack App’s URL. For example:

{
  "slackAppUrl": "https://api.slack.com/apps/A089PHD5S0Q"
}
  1. Open the URL to view and manage your Slack App configuration.

Last updated