v1
latestOpenAPI 3.0.02026-07-2482421001.1 KBUser management
Create invitation
This API invites a new user to your organization by email. If the email has been invited before, the existing invitation is refreshed with a new expiration date.
👍 Tip: The invitation is valid for 7 days. If the user does not accept the invitation within that time frame, they will need to be re-invited.
post/v1/invitations
Request body
Example request
{
"email": "jane.doe@example.com",
"first_name": "Jane",
"last_name": "Doe"
}Response
Invitation created (or refreshed) successfully
Example response
{
"email": "jane.doe@example.com",
"first_name": "Jane",
"last_name": "Doe",
"invited_by_account_pk": 1042,
"created_at": "2026-06-08T10:30:00Z",
"expires_at": "2026-06-15T10:30:00Z"
}