ENUM

LinkSSOErrorCode

LinkSSOErrorCode enumerates the possible errors that can cause account linking to fail.

link GraphQL Schema definition

1enum LinkSSOErrorCode {
2
3# The activation code is incorrect.
4CODE_INCORRECT
5
6# The activation code is expired.
7CODE_EXPIRED
8
9# The user has already linked an SSO app of the same type to their account.
10ALREADY_LINKED
11}