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

# Connect Your Personal Slack Account

> Learn how to connect your personal Slack account to receive notifications in Slack.

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="Connect Your Personal Slack Account"
  description="Learn how to connect your personal Slack account to receive notifications in Slack."
  steps={[
{
  name: "Open user settings",
  text: "Click your name in the bottom left corner.",
},
{
  name: "Connect Slack",
  text: "Click Connect and follow the steps to connect your personal Slack account.",
},
]}
/>

[Connect your personal Slack account](../notifications/introduction#connect-your-personal-slack-account) to receive personal notifications in Slack.

<Note>
  Your organization must have integrated Slack with Confidence first. If Slack is not yet integrated, ask your admin to [integrate Slack](./integrate-slack).
</Note>

## Connect Personal Slack

<Steps>
  <Step title="Open user settings">
    Click your name in the bottom left corner.
  </Step>

  <Step title="Connect Slack">
    Click `Connect` and follow the steps to connect your personal Slack account.
  </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="Notifications Reference" href="/docs/notifications/introduction">
    Deep dive into notification settings
  </Card>

  <Card title="Comments" href="/docs/experiments/comments">
    Get notified about comments and mentions
  </Card>

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