Update the display name of a thread with validation and authorization checks.
PUThttps://api.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.
thread_id string required
The unique identifier of the thread to rename.
title string required
The new display name for the thread. Maximum 200 characters, cannot be empty.
Bash
- Bash
- Python
- JavaScript
curl -X PUT "https://api.aitronos.com/v1/threads/thread_abc123/rename" \
-H "X-API-Key: $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "My Renamed Thread"
}'Response:
{
"id": "thread_abc123",
"title": "My Renamed Thread",
"updated_at": "2025-11-17T11:00:00Z"
}