Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Update the display name of a thread with validation and authorization checks.
PUThttps://api.freddy.aitronos.com/v1/threads/{thread_id}/rename

Update the display name of a thread with validation and authorization checks. Provides a dedicated endpoint for thread renaming operations.

Path Parameters

thread_id string required

The unique identifier of the thread to rename.

Request Body

title string required

The new display name for the thread. Maximum 200 characters, cannot be empty.

Bash
curl -X PUT "https://api.freddy.aitronos.com/v1/threads/thread_abc123/rename" \
  -H "Authorization: Bearer $FREDDY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Resolved Billing Issue - Invoice #INV-2025-001"
  }'

Response

{
  "success": true,
  "threadId": "thread_abc123",
  "newTitle": "Resolved Billing Issue - Invoice #INV-2025-001",
  "message": "Thread renamed successfully"
}