ENUM

AcceptOrganizationInviteErrorCode

Client error code.

link GraphQL Schema definition

1enum AcceptOrganizationInviteErrorCode {
2
3# Internal error.
4INTERNAL_ERROR
5
6# Invalid Argument.
7INVALID_ARGUMENT
8
9# Invitation not found.
10NOT_FOUND
11
12# The requesting user does not permission to accept invite.
13PERMISSION_DENIED
14
15# The user doesn't meet the requirements to have this role. For example, when
16# trying to assign the
17# "BILLING_MANAGER" role, but the user doesn't have 2FA enabled or completed
18# Extension Monetization Onboarding.
19MEMBER_INELIGIBLE
20
21# Organization Member already exists.
22ALREADY_EXISTS
23
24# User is exceeds the the limit of organization they can be a member for.
25EXCEEDS_MEMBERSHIP_LIMIT
26}