Skip to main content
GET
/
v2
/
organizations
/
{organizationSlug}
/
invites
curl -L https://api.turso.tech/v2/organizations/{organizationSlug}/invites \
  -H 'Authorization: Bearer TOKEN'
{
  "invites": [
    {
      "id": 1,
      "email": "iku@turso.tech",
      "role": "member",
      "token": "3e393245b91b41ebad0980bc98349c9d",
      "created_at": "2023-01-01T00:00:00Z"
    }
  ]
}
curl -L https://api.turso.tech/v2/organizations/{organizationSlug}/invites \
  -H 'Authorization: Bearer TOKEN'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationSlug
string
required

The slug of the organization or user account.

Response

200 - application/json

Successful response

invites
object[]