---
title: "Send an invitation again"
description: "A new link and fourteen more days."
url: "https://openemail.uk/docs/api/members/invitations-resend"
area: "API"
category: "Roles & access"
---

# Send an invitation again

A new link and fourteen more days.

`POST /members/invitations/{invitationId}/resend`

## POST /members/invitations/{invitationId}/resend

A new link and fourteen more days.

## Example

Needs `members:write`. The old link is retired, so only the newest email works, and an expired invitation is renewed. `delivered` and `deliveryError` describe this send.

**curl**

```
curl -X POST "$OE/members/invitations/winv_6bb640f5b99e47deb758f1f5/resend" -H "$AUTH"
```

**Response**

```
{
  "object": "invitation",
  "id": "winv_6bb640f5b99e47deb758f1f5",
  "email": "sam@acme.com",
  "role": {
    "id": "role_2b81de079c1f0a4b7e05d386",
    "name": "Support",
    "builtin": null
  },
  "addresses": [],
  "domains": [
    {
      "domainId": "93542ff8-2baa-4f2f-841d-5ceaa074ab0d",
      "domain": "acme.com",
      "access": "member"
    }
  ],
  "expiresAt": "2026-10-07T09:12:40.000Z",
  "expired": false,
  "lastSentAt": "2026-09-23T09:12:40.000Z",
  "delivered": true,
  "deliveryError": null,
  "createdAt": "2026-09-18T14:07:31.000Z"
}
```

> The same address cannot be sent to twice within ten minutes, which is 409 `invitation_too_soon`, and the daily allowance is 409 `invitation_limit_reached`.
