action pocketsmith_delete_users_id_forecast_cache { label: "Delete forecast cache for user" description: "Delete the user's cached forecast by recalculating the forecast." provider: pocketsmith method: DELETE path: "/users/{id}/forecast_cache" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }