Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
timezone
Update organization timezone
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/timezone \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "timezone": "America/New_York"
}
'
{
  "success": true,
  "data": {
    "timezone": "America/New_York"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Body

application/json
timezone
string
required

IANA timezone (e.g. America/New_York)

Response

Timezone updated

success
enum<boolean>
Available options:
true
data
object