POST
/api/v1/users/invitations
Invites a new member to the authenticated team by email and sends the invitation immediately.
Request Body
{ "email": "[email protected]", "role": "viewer" }
Valid roles are admin, editor, and viewer. Sends the invitation email immediately. Rejects addresses already on the team or already invited, and enforces the plan's seat limit. Requires the owner or an admin.
Response
{
"id": 3,
"email": "[email protected]",
"role": "viewer",
"created_at": "2026-08-20T15:04:00Z",
"expires_at": null
}