v1

latestOpenAPI 3.0.1MIT2026-07-134925112.4 KB

Invite Organization Member

Invite a user to an organization. If the user isn't already registered with Turso, they will receive a signup link. If an existing pending invite exists for the same email, it will be replaced.

post/v2/organizations/{organizationSlug}/invites

Path parameters

organizationSlugstring required

The slug of the organization or user account.

Request body

emailstring

The email of the user you want to invite. Exactly one of email or username must be provided.

usernamestring

The username of an existing Turso user you want to invite. Exactly one of email or username must be provided.

role'admin' | 'member' | 'viewer'

The role given to the user.

Response

Successful response

Example response

{
  "invited": {
    "email": "iku@turso.tech",
    "role": "member",
    "organization": "mycompany"
  }
}