getMessageList
Retrieve a list of email messages from a specified folder with configurable start and end parameters for efficient email management.
Instructions
Returns a list of messages in a given folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | No | * | |
folder | Yes | ||
start | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"default": "*",
"minLength": 1,
"type": "string"
},
"folder": {
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"start": {
"default": 1,
"minimum": 1,
"type": "number"
}
},
"required": [
"folder"
],
"type": "object"
}