createInbox
Generate secure, isolated inboxes for AI agents to send, receive, and manage messages efficiently within the AgentMail system. Customize with display name, domain, and username.
Instructions
Create a new inbox
Input Schema
Name | Required | Description | Default |
---|---|---|---|
display_name | No | ||
domain | No | ||
username | No |
Input Schema (JSON Schema)
{
"properties": {
"display_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Display Name"
},
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"username": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Username"
}
},
"title": "createInboxArguments",
"type": "object"
}