Invitation
Create invitations
Invite the given email addresses, skipping ones already invited or registered.
post/invitations/
Query parameters
cookie_namestring nullable
Request body
Example request
{
"emails": [
"jane.doe@example.com",
"john.smith@example.com"
],
"tenant_id": 1,
"project_id": 10
}Response
Successful Response
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
}
]