action pandorabots_delete_bot_file2 { label: "Delete a bot file (pdefaults, properties)" description: "Delete pdefaults or properties bot file.

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

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

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