Skip to main content
PUT
/
threads
/
{thread_id}
Update Thread
curl --request PUT \
  --url https://analyst.heyhumm.ai/threads/{thread_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "last_message": "<string>",
  "is_active": true,
  "status": "idle",
  "sharing": "private",
  "langsmith_trace_id": "<string>",
  "execution_workflow_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/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

thread_id
string
required

Thread ID

Query Parameters

organization_id
string
required

Body

application/json
title
string | null
last_message
string | null
is_active
boolean | null
status
enum<string> | null

Thread execution status.

Available options:
idle,
active,
completed,
error,
cancelled,
waiting_for_input,
refused
sharing
enum<string> | null

Thread sharing/visibility setting.

Available options:
private,
organization
langsmith_trace_id
string | null
execution_workflow_id
string | null

Response

Successful Response