Account Linking
Account linking is the process of connecting two or more separate user accounts or identity providers so they resolve to a single user identity. For example, a person who has signed in with a social login and a corporate login can have those combined so both point to the same profile. This helps prevent duplicate accounts and lets a user access their identity through multiple sign-in methods.
Account linking associates multiple distinct identity records or authentication sources with one canonical user profile, typically by designating a primary account and merging or attaching one or more secondary accounts to it. In federated deployments it connects credentials from multiple identity providers (for example social logins and corporate IdPs) to a single account so that different authentication events resolve to the same principal. Implementation details vary by vendor: some platforms merge two existing profiles into one (as in Auth0's primary/secondary model), while others attach a linked account to grant additional capabilities or privileges to a main account (as in CyberArk's linked-account model). Account linking is primarily an identity administration and profile-management concern and does not by itself define runtime authorization; the resulting linked identity governs which authentication sources map to a user, while access decisions remain the responsibility of separate authorization enforcement. Behavior around whether linking merges, replaces, or augments account data depends on the specific product and configuration.
Why it matters
Account linking directly addresses the problem of identity fragmentation. When a single person accumulates multiple separate accounts, for instance, one created through a social login and another through a corporate IdP, organizations end up with duplicate records that point to the same human being. This fragmentation complicates profile management, muddies audit trails, and can leave gaps where one account is deprovisioned while others remain active. By resolving multiple authentication sources to a single canonical identity, account linking reduces duplicate accounts and gives users a consistent identity regardless of which sign-in method they use.
Because account linking sits at the identity administration and profile-management layer, getting it right has downstream consequences for governance and security hygiene. A linked identity determines which authentication sources map to a given user, which in turn affects how completely an identity can be reviewed, updated, or offboarded. Poorly governed linking can also create risk: in privileged access contexts, some implementations (such as CyberArk's linked-account model) attach an account specifically to grant additional capabilities or privileges to a main account, so the linking relationship itself can influence what powerful credentials a user can reach. Treating linking as purely cosmetic understates its impact on the integrity of the identity record.
It is important to note what account linking does not do. Linking itself does not define runtime authorization, access decisions remain the responsibility of separate authorization enforcement. Conflating the act of associating authentication sources with the granting of permissions is a common source of confusion, and the distinction matters when designing controls: linking governs identity resolution, while a separate policy decision governs what the resolved principal is permitted to do.
Who it's relevant to
Inside Account Linking
Common questions
Answers to the questions practitioners most commonly ask about Account Linking.
