> ## 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.

# Add Confidence to a Slack Channel

> Learn how to add the Confidence app to a Slack channel so it can post 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="Add Confidence to a Slack Channel"
  description="Learn how to add the Confidence app to a Slack channel so it can post notifications."
  steps={[
{
  name: "Go to the Slack channel",
  text: "In Slack, go to the channel where you want Confidence to post notifications.",
},
{
  name: "Add the app",
  text: "Type /add and click Add app to this channel. Select Confidence from the list.",
},
]}
/>

You need to add the Confidence app to a channel if you want to let Confidence post notifications to it.

<Note>
  Your organization must have [integrated Slack with Confidence](./integrate-slack) first.
</Note>

## Add Confidence to Channel

<Steps>
  <Step title="Go to the Slack channel">
    In Slack, go to the channel where you want Confidence to post notifications.
  </Step>

  <Step title="Add the app">
    Type `/add` and click **Add app to this channel**. Select Confidence from the list.
  </Step>
</Steps>

## Related Resources

<CardGroup cols={2}>
  <Card title="Integrate Slack" href="/docs/how-to-guides/integrate-slack">
    Connect Slack to Confidence
  </Card>

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

  <Card title="Create Activity Feed" href="/docs/how-to-guides/create-activity-feed">
    Set up experiment activity notifications
  </Card>

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