action pandorabots_create_bot { label: "Create a bot" description: "Create a new instance of a bot on the Pandorabots server.

If there is already a bot under the same app_id and botname, a 409 error is returned. Invalid botname will return a 400 error.

Creating more bots than your plan allows or using an invalid app_id or user_key (or if applicable referrer filter) returns a 401 error.

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

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