get_alias
Retrieve detailed configuration of an email alias by specifying its local part and domain. Returns a JSON object with complete alias settings for Migadu email hosting.
Instructions
Get detailed alias information.
Args: target: Local part of alias domain: Domain name. Uses MIGADU_DOMAIN if not provided.
Returns: JSON object with complete alias configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | ||
target | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"target": {
"title": "Target",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}