action spoonacular_delete_meal_plan_template { label: "Delete Meal Plan Template" description: "Delete a meal plan template for a user." provider: spoonacular method: DELETE path: "/mealplanner/{username}/templates/{id}" encoding: json input: { type: "object" properties: { hash: { type: "string" } id: { type: "number" } username: { type: "string" } } required: ["hash", "id", "username"] additionalProperties: false } output: { type: "object" } }