For the complete documentation index, see llms.txt. This page is also available as Markdown.

querySessions

This method returns the list of the sessions created by the current application. You can create a session with createSession.

Parameters

Name

Type

Required

Description

cortexToken

string

yes

A token returned by authorize.

Result

The result is an array of session objects.

Example

{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "querySessions",
    "params": {
        "cortexToken": "xxx"
    }
}

Last updated