Skip to main content
PATCH
/
v2
/
chat-sessions
/
{id}
/
rename
Rename Chat Session
curl --request PATCH \
  --url http://localhost:3000/api/v2/chat-sessions/{id}/rename \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sessionName": "<string>"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
sessionName
string
required

Response

Chat session renamed successfully

I