action pandorabots_compile_bot { label: "Compile a bot" description: "A bot personality is created by uploading AIML and other file types to Pandorabots. The files must compile correctly in order for the bot to run. By issuing a call to this API, Pandorabots will compile the bot, updating any changes that have been made to the files.

Compiling the bot makes its most recent version available for talk. A 400 error means that we were unable to compile your bot (you should check your files for syntax issues) or the botname was not found.

You can see any thrown errors in the results field of the returned JSON object:

curl -v  -X GET 'https://aiaas.pandorabots.com/bot/APP_ID/BOTNAME/verify?user_key=USER_KEY'

" provider: pandorabots method: GET path: "/bot/{app_id}/{botname}/verify" encoding: json input: { type: "object" properties: { app_id: { type: "string" } botname: { type: "string" } } required: ["app_id", "botname"] additionalProperties: false } output: { type: "object" additionalProperties: true } }