Skip to main content
PATCH
/
threads
/
{threadId}
/
settings
Update thread settings
curl --request PATCH \
  --url https://inboxapp.com/api/v1/threads/{threadId}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "typingIndicatorsEnabled": true
}
'
{
  "threadId": "<string>",
  "typingIndicatorsEnabled": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

threadId
string
required

Body

application/json
typingIndicatorsEnabled
boolean | null

Whether typing indicators are enabled for this thread. Set to null to use the team default setting.

Example:

true

Response

200 - application/json

OK

threadId
string
required

The ID of the thread.

Example:

"df6jbw4h36..."

typingIndicatorsEnabled
boolean | null
required

Whether typing indicators are enabled for this thread. If null, the team default setting is used.

Example:

true