ENUM

CreateOrganizationInviteErrorCode

CreateOrganizationInviteErrorCode defines a client error that occurred while creating an organization Invite.

link GraphQL Schema definition

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