Technical Log

The technical log API handles showing the logs from one conversation inside bot simulator

API SUBPATH: eva-technical-log

Auxiliary Methods

Controller method to find logs from a specific session

get
Path parameters
orgUUIDstringRequired

A valid organization UUID

envUUIDstringRequired

A valid environment UUID

botUUIDstringRequired

A valid bot UUID

channelUUIDstringRequired

A valid channel UUID

sessionCodestringRequired

A valid session UUID

Query parameters
statusstringOptional

An optional status filter for the logs. Possible values are All, Info or Error. Default value is All.

Default: All
typestring[]Optional

An optional list of types to filter the logs. Possible values are All, Dynamic Answer, Code, Prompt Cell, Knowledge AI, Masking, Multilanguage, NLP, Rephrasing, Rest, Connector Cell, Rule, Transactional Answer, Webhook and Zero shot. Default value is All.

Default: ["All"]
directionstringOptional

An optional direction filter for the logs. Possible values are ASC or DESC. Default value is DESC.

Default: DESC
sincestring · date-timeOptional

An optional LocalDatetime to filter logs that only saved after a specific time.

userInteractionUUIDstringOptional

An optional user interaction UUID that returns logs only with this user interaction UUID.

Header parameters
x-request-idstringOptional

It is an identifier provided by the API client that will be used to identify distributed logs.

Responses
200
Ok
application/json
get
GET /org/{orgUUID}/env/{envUUID}/bot/{botUUID}/channel/{channelUUID}/logs/{sessionCode} HTTP/1.1
Host: 
Accept: */*
{
  "logs": [
    {
      "uuid": "text",
      "userInteractionUUID": "text",
      "status": "text",
      "type": "text",
      "datetime": "2025-07-05T12:39:00.858Z",
      "content": "text"
    }
  ]
}

Last updated

Was this helpful?