Skip to main content
PATCH
/
api
/
conversations
/
{conversation_id}
Update Conversation
curl --request PATCH \
  --url https://your-domain.com/api/conversations/{conversation_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "status": "active",
  "starred": true
}
'
{
  "success": true,
  "data": "<unknown>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fim.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

conversation_id
string
required

Body

application/json
title
string | null
status
enum<string> | null
Available options:
active,
archived
starred
boolean | null

Response

Successful Response

success
boolean
default:true
data
any
error
string | null