---
title: How to Resend an Organization Invitation
url: https://docs.vultr.com/platform/iam/organizations/organization-invitations/how-to-resend-an-organization-invitation
description: 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.
publish_date: 2026-03-24T19:51:55.961309Z
last_updated: 2026-04-08T15:58:59.712974Z
---

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"

    1. Log in to the [Vultr Console](https://console.vultr.com).
    1. Click the organization name in the top navigation bar.
    1. Click **Manage Organization**.
    1. Click the **Users** tab.
    1. Scroll down to the **Invitations** section.
    1. 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.

=== "Vultr API"

    1. Send a `GET` request to the [**List Organization Invites** endpoint](https://www.vultr.com/api/#tag/iam/operation/list-iam-invitations) 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.

    1. Send a `POST` request to the [**Resend Organization Invite** endpoint](https://www.vultr.com/api/#tag/iam/operation/resend-iam-invitation) 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.