Skip to main content
PUT
/
v2
/
chat-sessions
/
{id}
Update Chat Session
curl --request PUT \
  --url http://localhost:3000/api/v2/chat-sessions/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "folderId": "<string>",
  "studioId": "<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
folderId
string
studioId
string

Response

Chat session updated successfully

I