action pocketsmith_delete_events_id { label: "Delete event" description: "Deletes an event by its ID." provider: pocketsmith method: DELETE path: "/events/{id}" encoding: json input: { type: "object" properties: { behaviour: { type: "string" enum: ["one", "forward", "all"] } } required: ["behaviour"] additionalProperties: false } output: { type: "object" additionalProperties: true } }