> ## Documentation Index
> Fetch the complete documentation index at: https://docs.patchline.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Account & profile

> Manage your Patchline account — name, email, profile picture, role, password, and connected apps.

export const TierBadge = ({tier}) => {
  const styles = {
    free: {
      label: "Free",
      color: "#A1A1AA"
    },
    starter: {
      label: "Starter+",
      color: "#00E6E2"
    },
    pro: {
      label: "Pro+",
      color: "#0068FF"
    },
    scale: {
      label: "Scale+",
      color: "#7A5BFF"
    },
    enterprise: {
      label: "Enterprise",
      color: "#FF7A59"
    },
    all: {
      label: "All plans",
      color: "#22C55E"
    }
  };
  const t = styles[tier?.toLowerCase()] ?? styles.all;
  return <span style={{
    display: "inline-flex",
    alignItems: "center",
    gap: "4px",
    padding: "2px 10px",
    borderRadius: "999px",
    border: `1px solid ${t.color}40`,
    background: `${t.color}1A`,
    color: t.color,
    fontSize: "12px",
    fontWeight: 600,
    fontFamily: "var(--font-family-mono)",
    verticalAlign: "middle"
  }}>
      {t.label}
    </span>;
};

export const AICallout = ({page}) => {
  const slug = page ?? "";
  const mdUrl = `https://docs.patchline.ai${slug}.md`;
  return <div style={{
    marginTop: "32px",
    padding: "16px 20px",
    borderRadius: "12px",
    border: "1px solid rgba(0,230,226,0.25)",
    background: "linear-gradient(135deg, rgba(0,230,226,0.08), rgba(0,104,255,0.05))",
    color: "inherit",
    fontSize: "14px",
    lineHeight: 1.6
  }}>
      <strong style={{
    display: "block",
    marginBottom: "6px",
    color: "#00E6E2"
  }}>
        For AI agents reading this page
      </strong>
      The canonical machine-readable version of this page is at{" "}
      <a href={mdUrl}>
        <code>{mdUrl}</code>
      </a>
      . For product actions, connect to{" "}
      <code>www.patchline.ai/api/mcp/v1</code>
      {" "}and call MCP <code>tools/list</code> for the current tool schema.
      Rules for navigating these docs:{" "}
      <a href="https://docs.patchline.ai/AGENTS.md">
        <code>docs.patchline.ai/AGENTS.md</code>
      </a>
      .
    </div>;
};

Manage the basics: name, email, profile picture, role, password, and
connected apps.

<TierBadge tier="all" />   All tiers.

## Account tab

Settings → **Account**:

| Field           | Notes                                                                                                         |
| --------------- | ------------------------------------------------------------------------------------------------------------- |
| Name            | Display name across the app                                                                                   |
| Email           | Sign-in identity. Changing requires email verification.                                                       |
| Profile picture | Used across your Patchline account                                                                            |
| Role            | What you're using Patchline for (artist / manager / label / publisher / other) — informs Aria's default style |

## Security tab

Settings → **Security**:

* **Password** — change anytime, requires current password
* **Active sessions** — see where you're signed in, revoke remotely
* **Two-factor authentication** (2FA) — TOTP-based, recommended
* **Connected OAuth applications** — apps that have token access to
  your Patchline (MCP clients, integrations) — revoke any time

## Workspaces & teams

Multi-user workspace setup is handled for Enterprise customers. For
standard tiers, the workspace is owned by the signed-in account.

## Deleting your account

Email [support@patchline.ai](mailto:support@patchline.ai) with the
subject "Account deletion request." Deletion completes within 7 days
of request.

## Related pages

* [Billing](/account/billing) — subscription management
* [Plans & credits](/account/plans-credits) — AI credit math
* [Pricing](/get-started/pricing) — tier comparison

<AICallout page="/account/profile" />
