InviteMembersInput (Input)
Description
Input for inviting members.
Fields
| Name | Description |
|---|---|
| defaultSpacesIds - [ID!] | The ids of the default spaces the invitees have. |
| expiresAt - DateTime | When does the invitations expire? Empty for no expiration. |
| invitationMessage - String | Custom message for invitation. |
| invitees - [InviteeInput!]! | The details of the invitees |
| roleId - ID | The id of the role the invitees have. |
input InviteMembersInput {
defaultSpacesIds: [ID!]
expiresAt: DateTime
invitationMessage: String
invitees: [InviteeInput!]!
roleId: ID
}