> ## Documentation Index
> Fetch the complete documentation index at: https://docs.particle.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# invite_expired

> Organization invitation has expired

|                    |                  |
| ------------------ | ---------------- |
| **HTTP status**    | `410 Gone`       |
| **Error code**     | `invite_expired` |
| **Resolve action** | `request_invite` |

## What happened

The organization invitation has expired. Invitations are valid for 7 days after being sent.

## How to fix

Ask the organization admin or owner to send a new invitation.

An admin can resend the invite via the API. Use the `inviteId` from `GET /v1/organizations/{orgId}/invites`:

```bash theme={"dark"}
curl -X POST https://api.particle.pro/v1/organizations/{orgId}/invites/{inviteId}/resend \
  -H "Authorization: Bearer ADMIN_JWT_TOKEN"
```

Or send a new invitation:

```bash theme={"dark"}
curl -X POST https://api.particle.pro/v1/organizations/{orgId}/invites \
  -H "Authorization: Bearer ADMIN_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "invitee@example.com", "role": "MEMBER"}'
```

<Note>
  Only organization owners and admins can send invitations.
</Note>
