action pandorabots_list_bot_files { label: "List of bot files" description: "Retrieve a list of a bot's files. Returns a JSON object with each bot file associated with bot specified.

Returns a 404 error code for bot not found. Returns a 401 error code for invalid app_ID, user_key, or referrer filter.

The return=zip option may not behave as expected using Active Docs 1.2

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

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