curl --request PATCH \
--url https://your-domain.com/api/conversations/{conversation_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Updated Title",
"status": "archived",
"starred": true
}
'