ENUM

CreateOrganizationMemberErrorCode

CreateOrganizationMemberErrorCode defines a client error that occurred while creating an organization member.

link GraphQL Schema definition

1enum CreateOrganizationMemberErrorCode {
2
3# Organization Member already exists.
4ALREADY_EXISTS
5
6# User does not have permission to perform action.
7PERMISSION_DENIED
8
9# The user does not exist.
10USER_NOT_FOUND
11
12# The user doesn't meet the requirements to have this role. For example, when
13# trying to assign the
14# "BILLING_MANAGER" role, but the user doesn't have 2FA enabled or completed
15# Extension Monetization Onboarding.
16MEMBER_INELIGIBLE
17}