OBJECT

StartAgentSessionPayload

link GraphQL Schema definition

1type StartAgentSessionPayload {
2
3# A unique identifier for the client
4client_id: String!
5
6# A unique identifier for the agent's session
7session_id: String!
8
9# The websocket URL that client can connect to.
10websocket_url: String!
11
12}