How to Resend an Organization Invitation

Updated on 08 April, 2026

Resend a pending organization invitation to a user on Vultr. Retry delivery when the original invitation email was not received or the link has expired.


Resending an organization invitation sends a new invitation email to the user and extends the expiration date. This is useful when the original invitation has expired or when the user did not receive the initial email.

This guide explains how to resend an organization invitation using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Log in to the Vultr Console.

  2. Click the organization name in the top navigation bar.

  3. Click Manage Organization.

  4. Click the Users tab.

  5. Scroll down to the Invitations section.

  6. Locate the invitation with a status of Invite Pending and click the Resend icon next to it.

    The invitation email is resent and the expiration date is extended.

  1. Send a GET request to the List Organization Invites endpoint to retrieve all invitations.

    console
    $ curl "https://api.vultr.com/v2/invitation" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    Note the id of the invitation you want to resend. Only invitations with invite_status set to Pending can be resent.

  2. Send a POST request to the Resend Organization Invite endpoint to resend the invitation. Replace {invitation-id} with the id of the invitation.

    console
    $ curl "https://api.vultr.com/v2/invitation/{invitation-id}/resend" \
        -X POST \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    The expiration_date is updated to reflect the new expiration window from the time of resending.

Comments