PATCH
/
v1
/
organizations
/
{organizationSlug}
curl -L -X PATCH https://api.turso.tech/v1/organizations/{organizationSlug} \
  -H 'Authorization: Bearer TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
      "overages": true
  }'
{
  "organization": {
    "name": "personal",
    "slug": "iku",
    "type": "personal",
    "overages": false,
    "blocked_reads": false,
    "blocked_writes": false,
    "plan_id": "hobby",
    "plan_timeline": "monthly",
    "platform": "vercel"
  }
}
curl -L -X PATCH https://api.turso.tech/v1/organizations/{organizationSlug} \
  -H 'Authorization: Bearer TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
      "overages": true
  }'

Path Parameters

organizationSlug
string
required

The slug of the organization or user account.

Body

application/json
The updated organization details.
overages
boolean

Enable or disable overages for the organization.

Response

200 - application/json
Successful response
organization
object

The updated organization.

Was this page helpful?