> ## Documentation Index
> Fetch the complete documentation index at: https://confidence-auth-testing.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrate Slack with Confidence

> Learn how to integrate your Slack workspace with Confidence to enable Slack notifications.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="Integrate Slack with Confidence"
  description="Learn how to integrate your Slack workspace with Confidence to enable Slack notifications."
  steps={[
{
  name: "Go to Notification Integrations",
  text: "Go to Admin > Notifications and select Integrations.",
},
{
  name: "Add Slack",
  text: "Click Add Slack and follow the steps to complete the integration.",
},
]}
/>

[Integrate Slack](../notifications/introduction#integrate-your-slack-account-with-confidence) with Confidence to enable Slack notifications for surfaces, activity feeds, and personal notifications.

<Note>
  You need to have admin rights in your Slack workspace to integrate it with Confidence.
</Note>

## Integrate Slack

<Steps>
  <Step title="Go to Notification Integrations">
    Go to **Admin > Notifications** and select **Integrations**.
  </Step>

  <Step title="Add Slack">
    Click **Add Slack** and follow the steps to complete the integration.
  </Step>
</Steps>

<Note>
  After integrating Slack, you'll need to [add the Confidence app to specific channels](./add-confidence-to-slack-channel) where you want it to post notifications.
</Note>

## Related Resources

<CardGroup cols={2}>
  <Card title="Add Confidence to Channel" href="/docs/how-to-guides/add-confidence-to-slack-channel">
    Enable notifications in specific channels
  </Card>

  <Card title="Connect Personal Slack" href="/docs/how-to-guides/connect-personal-slack">
    Get personal notifications in Slack
  </Card>

  <Card title="Notifications Reference" href="/docs/notifications/introduction">
    Deep dive into notification settings
  </Card>

  <Card title="Configure Surface Notifications" href="/docs/how-to-guides/configure-surface-notifications">
    Set up notifications for surfaces
  </Card>
</CardGroup>
