action pandorabots_delete_bot_file1 { label: "Delete a bot file (AIML, set, map, substitution)" description: "Delete an AIML, set, map or substitution bot file

For malformed file-kind, a 404 error is returned. For invalid file or botname, a 412 error is returned.

curl -v -X DELETE 'https://aiaas.pandorabots.com/bot/APP_ID/BOTNAME/FILE-KIND/FILENAME?user_key=USER_KEY'

" provider: pandorabots method: DELETE path: "/bot/{app_id}/{botname}/{file-kind}/{filename}" encoding: json input: { type: "object" properties: { app_id: { type: "string" } botname: { type: "string" } "file-kind": { type: "string" } filename: { type: "string" } } required: ["app_id", "botname", "file-kind", "filename"] additionalProperties: false } output: { type: "object" additionalProperties: true } }