listResults
Retrieve and manage chatbot interaction results from MCP-Typebot by specifying bot ID, time filters, and result limits to organize and analyze user engagement data effectively.
Instructions
Lista resultados de un Typebot
Input Schema
Name | Required | Description | Default |
---|---|---|---|
botId | Yes | ||
cursor | No | ||
limit | No | ||
timeFilter | No | ||
timeZone | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"botId": {
"minLength": 1,
"type": "string"
},
"cursor": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"timeFilter": {
"type": "string"
},
"timeZone": {
"type": "string"
}
},
"required": [
"botId"
],
"type": "object"
}