action pandorabots_debug_bot { label: "Debug a bot conversation" description: "Use these tools to test/debug/trace bot categories.
Malformed requests such as exceeding size of input or invalid clientname returns 400 error code. Error code 412 is returned if the bot is not compiled or does not exist.
curl -v -X POST 'https://aiaas.pandorabots.com/talk/APP_ID/BOTNAME?user_key=USER_KEY&input=INPUT'" provider: pandorabots method: POST path: "/talk/{app_id}/{botname}" encoding: json input: { type: "object" properties: { app_id: { type: "string" } botname: { type: "string" } client_name: { type: "string" } extra: { type: "string" } input: { type: "string" } recent: { type: "string" } reload: { type: "string" } reset: { type: "string" } sessionid: { type: "string" } that: { type: "string" } topic: { type: "string" } trace: { type: "string" } } required: ["app_id", "botname", "input"] additionalProperties: false } output: { type: "object" additionalProperties: true } }