listMessages
Retrieve and organize messages from specified inboxes on AgentMail, enabling AI agents to manage and process communication efficiently. Supports pagination for scalable message listing.
Instructions
List messages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inbox_id | Yes | ||
| limit | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"properties": {
"inbox_id": {
"title": "Inbox Id",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
}
},
"required": [
"inbox_id"
],
"title": "listMessagesArguments",
"type": "object"
}