delete_alias
Remove email aliases permanently in Migadu email hosting. Provide a list of targets (local part and optional domain). This action is irreversible and cannot be undone.
Instructions
Delete aliases. DESTRUCTIVE: Cannot be undone. List of dicts with: target (local part), domain (optional).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
targets | Yes |
Input Schema (JSON Schema)
{
"properties": {
"targets": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Targets",
"type": "array"
}
},
"required": [
"targets"
],
"type": "object"
}