List Inbox Messages
Perform List Inbox Messages through GMail.
gmail_list_inbox_messagesread
Inputs
- Search Phrase
search_phrasetextOptional text value.
- Since Days
since_daysnumberOptional numeric value.
- Max Results
max_resultsnumberOptional numeric value.
Default:
25 - With Labels
with_labelstextOptional text value.
- Without Labels
without_labelstextOptional text value.
- Untagged Only
untagged_onlybooleanOptional true-or-false value.
Default:
false - Unread Only
unread_onlybooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessmessagesMessagesmessage_idsMessage IdscountCountscannedScannedscan_limit_hitScan Limit Hitunknown_labelsUnknown LabelserrorErrorerror_messageError Messageerror_codeError Code
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"since_days": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"max_results": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"unread_only": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"with_labels": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"search_phrase": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"untagged_only": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"without_labels": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"scanned": {},
"success": {},
"messages": {},
"error_code": {},
"message_ids": {},
"error_message": {},
"scan_limit_hit": {},
"unknown_labels": {}
},
"additionalProperties": true
}