Community owner and members can invite other users from their network to the community. To get the list of possible invitees,Documentation Index
Fetch the complete documentation index at: https://docs.opigno.com/llms.txt
Use this file to discover all available pages before exploring further.
getPossibleCommunityInvitees should be used.
Members can invite other users only to the public communities.Users associated with the
ADMINISTRATOR scope can invite any other user who is not a member of the community yet.| Argument | Type | Description | Default |
|---|---|---|---|
communityId | ID | Required. ID of the community to get the list of the user contexts who can be invited to. | — |
after | Cursor | Returns results that come after the specified cursor. Should be used together with first parameter. Cannot be used if before is set. | — |
before | Cursor | Returns results that come before the specified cursor. Should be used together with last parameter. Cannot be used if after is set. | — |
first | Integer | Returns up to the first N elements from the list. Required if after parameter is set. Cannot be used together with last. | — |
last | Integer | Returns up to the first N elements from the list. Required if before parameter is set. Cannot be used together with first. | — |
reverse | Boolean | Allows to change the order of the sorting to DESC. | false |
name | String | Provides the possibility to filter by the user context name. Note: it makes sense only if the real user name is sent to Opigno Enterprise API during the user context synchronization. | — |
createCommunityInvitation mutation can be executed.