moveMessage
Move an email message by its ID from one folder to another folder within your email account for better organization and management.
Instructions
Moves a message by ID from one folder to another.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destinationFolder | Yes | ||
id | Yes | ||
sourceFolder | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"destinationFolder": {
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"id": {
"type": "number"
},
"sourceFolder": {
"maxLength": 100,
"minLength": 2,
"type": "string"
}
},
"required": [
"sourceFolder",
"destinationFolder",
"id"
],
"type": "object"
}