action combell_delete_scheduled_task { label: "Delete a scheduled task" provider: combell method: DELETE path: "/linuxhostings/{domainName}/scheduledtasks/{scheduledTaskId}" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "Linux hosting domain name." } scheduledTaskId: { type: "string" } scheduled_task_id: { type: "string" description: "Id of the scheduled task." } } required: ["domainName", "domain_name", "scheduledTaskId", "scheduled_task_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }