action exavault_delete_email_list_by_id { label: "Delete an email group with given id" description: "Permanently delete an email group. This action is not reversible. We recommend making a user confirm this action before sending the API call. " provider: exavault method: DELETE path: "/email-lists/{id}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } id: { type: "integer" } } required: ["ev-access-token", "ev-api-key", "id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } responseStatus: { type: "integer" description: "Http status code of the response. " } } } }