Skip to main content
PATCH
/
v2
/
email-threads
/
settings
Update Settings Endpoint
curl --request PATCH \
  --url https://api.example.com/v2/email-threads/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "centralized_inbox_auto_assign": true,
  "centralized_inbox_auto_assign_threshold": 50,
  "centralized_inbox_matching_guidelines": "<string>"
}
'
{
  "centralized_inbox_auto_assign": true,
  "centralized_inbox_auto_assign_threshold": 123,
  "centralized_inbox_matching_guidelines": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.api.stuut.co/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.

Body

application/json

Request to update centralized inbox auto-assign settings.

centralized_inbox_auto_assign
boolean | null
centralized_inbox_auto_assign_threshold
integer | null

Threshold must be between 0 and 100.

Required range: 0 <= x <= 100
centralized_inbox_matching_guidelines
string | null

Free-text matching guidelines for the AI agent.

Maximum string length: 5000

Response

Successful Response

Current centralized inbox settings for the organization.

centralized_inbox_auto_assign
boolean
required
centralized_inbox_auto_assign_threshold
integer
required
centralized_inbox_matching_guidelines
string | null
required