GraphQL reference

ReinviteMembershipInput

Input

Autogenerated input type of ReinviteMembership

mutation { organization(id: $organizationId) { reinviteMembership } }

Example

mutation ReinviteMembership(
  $organizationId: ID!
  $input: ReinviteMembershipInput!
) {
  organization(id: $organizationId) {
    reinviteMembership(input: $input) {
        errors
      }
  }
}

Fields

FieldTypeDescription
bodyStringCustom invitation body for human-authored invitations. Agents must omit this argument to use the approved template.
clientMutationIdStringA unique identifier for the client performing the mutation.
membershipIdID!
mutationMetadataJSON
subjectStringCustom invitation subject for human-authored invitations. Agents must omit this argument.