v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
Invitation

Resend an invitation

Resend the invitation email for a pending invitation.

post/invitations/{invitation_id}/resend

Path parameters

invitation_idinteger required

ID of the invitation to resend.

ID of the invitation to resend.

Query parameters

cookie_namestring nullable

Response

Successful Response

idinteger required

Unique identifier of the invitation.

emailstring required

Email address the invitation was sent to.

tenant_idinteger required

Identifier of the tenant the invite belongs to.

project_idinteger nullable required

Project the invite grants access to, if any.

statusstring required

Current invitation status.

created_atstring date-time required

UTC timestamp when the invitation was created.

accepted_atstring date-time nullable required

UTC timestamp when the invitation was accepted, if it was.

revoked_atstring date-time nullable required

UTC timestamp when the invitation was revoked, if it was.

creator_user_idinteger required

Identifier of the user who created the invitation.

Example response

{
  "id": 100,
  "email": "jane.doe@example.com",
  "tenant_id": 1,
  "project_id": 10,
  "status": "PENDING",
  "created_at": "2026-01-15T09:30:00Z",
  "accepted_at": "2026-01-16T12:00:00Z",
  "creator_user_id": 42
}