Skip to main content
cURL
curl --request GET \
  --url https://api.simplex.sh/get_session_store/{session_id} \
  --header 'X-API-Key: <api-key>'
{
  "succeeded": true,
  "session_store": [
    {}
  ]
}
Gets the session store data.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Path Parameters

session_id
string<uuid>
required

The ID of the session.

Response

Session store response

succeeded
boolean
required

Whether the request succeeded.

session_store
object[]

The session store data.

I