listInboxes
Retrieve all inboxes on AgentMail to manage and organize isolated communication channels for AI agents, with options to limit and offset results.
Instructions
List all inboxes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
}
},
"title": "listInboxesArguments",
"type": "object"
}