validate_export_request
Check export request parameters for errors before processing to ensure valid inputs for third-party app exports from Zapmail.
Instructions
Validate export request parameters before execution to prevent errors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | No | Third-party app name | |
apps | No | Apps to export to | |
contains | No | Filter mailboxes containing this text | |
No | Third-party account email | ||
ids | No | Specific mailbox IDs to export | |
password | No | Third-party account password | |
status | No | Filter by mailbox status |
Input Schema (JSON Schema)
{
"properties": {
"app": {
"description": "Third-party app name",
"type": "string"
},
"apps": {
"description": "Apps to export to",
"items": {
"type": "string"
},
"type": "array"
},
"contains": {
"description": "Filter mailboxes containing this text",
"type": "string"
},
"email": {
"description": "Third-party account email",
"type": "string"
},
"ids": {
"description": "Specific mailbox IDs to export",
"items": {
"type": "string"
},
"type": "array"
},
"password": {
"description": "Third-party account password",
"type": "string"
},
"status": {
"description": "Filter by mailbox status",
"type": "string"
}
},
"type": "object"
}