User Guide
API DOCSVOICE GATEWAYHELPSECURITY
Current Version
Current Version
  • Welcome
  • What's New
  • ๐Ÿš€GETTING STARTED
    • Login
    • Concepts and Glossary
    • Language Models
      • Syntphony NLP
      • Other NLP and LLM Connectors
      • FAQs
    • Build a Virtual Agent
      • Overview
      • From Scratch
      • By Importing
      • Pre-Built Templates
      • Training task
    • Testing
      • Automated Test
      • Advanced Request
      • Simulate Dialog
      • View Logs
    • Create and manage profiles
  • ๐Ÿ’ฌBUILD DIALOGS
    • Flows
    • Dialog Cells
      • Intent
      • Entity
      • Answer
      • Input
      • Jump
      • End
      • Service
      • Rest Connector
      • Code
      • Rule
        • Variable answers using Code and Rule cells
        • Enable and disable flows using Rule Cells
    • Data Masking of Personal Identificable Information
    • Dynamic Content and Contexts
    • Voice Agent
    • Multilingual Agent (beta)
  • โœจGENERATIVE AI
    • AI features
    • Assist Answer (beta)
    • Examples Generator
    • Knowledge AI
    • Prompt cell
      • Prompt crafting
      • Practical examples
    • Rephrase Answer
    • Zero-Shot LLM
  • ๐ŸŒCHANNELS
    • Channels
      • WhatsApp (by Infobip)
      • Facebook Messenger
      • Microsoft Teams
      • Integrating Existing Channels
    • Webchat Plugin
  • โš™๏ธCONFIGURATIONS
    • Parameters
    • Advanced Resources
    • Other Options
      • Intent Navigator
  • ๐Ÿ“ŠANALYTICS & INSIGHTS
    • Dashboards
      • Overview
      • Funnel charts
      • User messages
      • Conversations
      • Reports
    • External Analytics Platforms
  • API DOCS
    • Overview
    • API Guidelines
      • Conversation API
      • Cloner API
      • EVG Connector
      • Management API
        • Admin API
          • Bot Admin
          • Environment
          • Organization
          • User
          • Notification
        • Instance API
          • Knowledge AI
          • Knowledge AI NLP
          • Answer
          • Automated Tests
          • Bot
          • Broker
          • Channel
          • Dashboard
          • Dialog Manager
          • Entity
          • Generative Service
          • Intent
          • Parameters
          • Tag
          • Technical Log
          • Training
          • Transactional Service
          • Rest Connector
          • Wait Input
          • Websnippet
      • Webhooks
    • Infrastructure Guidelines
      • Syntphony CAI server Installation guide
      • Maintenance Methods
      • Supported/verified third-party software
    • Data Structure
      • Admin Data Structure
      • Environment Data Structure
    • Voice Gateway
      • Genesys Cloud CX
Powered by GitBook
On this page

Was this helpful?

  1. API DOCS
  2. API Guidelines
  3. Management API
  4. Instance API

Technical Log

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

PreviousTagNextTraining

Last updated 5 months ago

Was this helpful?

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
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
*/*
409
Conflict
*/*
422
Unprocessable Entity
*/*
500
Internal Server Error
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-05-09T11:02:19.688Z",
      "content": "text"
    }
  ]
}
  • Auxiliary Methods
  • GETController method to find logs from a specific session