Skip to main content
Resends an invitation email to an invited user. Only works for users with INVITED status.

Arguments

input
required
mutation resendUserInvitation($input: ResendUserInvitationInput!) {
  resendUserInvitation(input: $input) {
    resendUserInvitation {
      userId
      email
    }
    errors {
      ... on AuthenticationError {
        advice
        code
        message
      }
      ... on ForbiddenError {
        advice
        code
        message
      }
    }
  }
}

Response

Returns a ResendUserInvitationPayload
{
  "data": {
    "resendUserInvitation": {
      "resendUserInvitation": ResendUserInvitation,
      "errors": [
        AuthenticationError
      ]
    }
  }
}