list_identities
Retrieve a detailed list of email identities linked to a specific mailbox, including statistical summaries and sample data, to manage and monitor email configurations effectively.
Instructions
List email identities for mailbox. Returns summary with statistics and samples.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| domain | No | ||
| mailbox | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "domain": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Domain"
    },
    "mailbox": {
      "title": "Mailbox",
      "type": "string"
    }
  },
  "required": [
    "mailbox"
  ],
  "type": "object"
}