curl --request PATCH \
--url https://api.example.com/api/v1/conversations/{conversation_id}/rename/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type Response Rename Conversation Api V1 Conversations Conversation Id Rename Patch · object.
curl --request PATCH \
--url https://api.example.com/api/v1/conversations/{conversation_id}/rename/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{}