action citrixonline_delete_organizers { label: "Delete organizer by email" description: "Deletes the individual organizer specified by the email address. This API call is only available to users with the admin role." provider: citrixonline method: DELETE path: "/organizers" encoding: json input: { type: "object" properties: { email: { type: "string" } } required: ["email"] additionalProperties: false } output: { type: "object" additionalProperties: true } }