Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
autopilot-monitor-settings
Update autopilot monitor settings
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/autopilot-monitor-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "thresholdMinutes": 10
}
'
{
  "success": true,
  "message": "Autopilot monitor settings updated",
  "data": {
    "thresholdMinutes": 10
  }
}

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
thresholdMinutes
integer
required

Minutes a conversation may remain stalled on autopilot before the monitor flags it for human attention (default 5).

Required range: x >= 1

Response

Autopilot monitor settings updated

success
enum<boolean>
Available options:
true
message
string
data
object