E021: Resend invitation
POST /api/organizations/current/invitations/:id/resend
Re-delivers a pending invitation email and pushes the expiry forward. Triggered from Settings, Users, pending invitations row.
Authentication
Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Admin.
Request
No body.
Response — 200 OK
{
"invitation": { "id": "uuid", "email": "...", "status": "pending", "expiresAt": "..." },
"emailSent": true
}
Errors
| HTTP | code | Condition |
|---|---|---|
| 404 | not_found | No invitation with that id. |
| 409 | invalid_transition | Invitation is not in pending state. |
| 403 | forbidden | Caller is not owner/admin. |
Workflow
Calls W021 Resend invitation.