Skip to main content
PATCH
/
v0
/
chat
/
sessions
/
{session_id}
Update Session
curl --request PATCH \
  --url https://api.example.com/v0/chat/sessions/{session_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>"
}
'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-juno-jwt
string | null

Path Parameters

session_id
string
required

Body

application/json
title
string | null
Maximum string length: 255

Response

Session updated successfully

HAL-style hypermedia links for navigation and available actions.

session
SessionData · object
required