GET
/
agents
/
{agent_id}
/
sessions
Get Agent's Sessions
curl --request GET \
  --url https://localhost:8000/v1/agents/{agent_id}/sessions
{
  "sessions": [
    {
      "user_ids": [
        "<string>"
      ],
      "session_id": "<string>",
      "group_id": "<string>",
      "agent_ids": [
        "<string>"
      ]
    }
  ]
}

Path Parameters

agent_id
string
required

Response

200 - application/json

A list of sessions for the specified agent.

sessions
object[]