✏️ Update Session
Modify the details or metadata associated with an existing session. This can include updating user preferences, conversation context, or other session attributes.
Endpoint:
PATCH /sessions/{session_id}
Request Body:
jsonCopyEdit{
"metadata": {
"intent": "check_balance"
}
}Response:
jsonCopyEdit{
"id": "session_id_1",
"status": "updated",
"updated_at": "2025-05-17T09:15:00Z"
}Last updated