v1

latestOpenAPI 3.0.02026-07-26242779.3 KB

Send GET request to session

Proxies a GET request to an endpoint defined in your running bot. The response is returned directly from the bot.

get/{serviceName}/sessions/{sessionId}/{path}

Path parameters

serviceNamestring required

Name of the deployed agent

sessionIdstring uuid required

Session ID returned from the start endpoint

pathstring required

The endpoint path defined in your bot using the @app decorator

Response

Successful response from the bot

ProxiedResponse required

Response from your bot endpoint. The schema depends on what your bot returns.

Example response

{
  "status": "active",
  "message_count": 5,
  "user_name": "Alice"
}