بنقرة واحدة
gws-gmail-users-settings-filters-list
Gmail: List the existing message filters (rules) in the user's mailbox.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Gmail: List the existing message filters (rules) in the user's mailbox.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Gmail: Create a custom label in the user's mailbox.
Gmail: List all labels in the user's mailbox.
Gmail: Get a specific message by ID with configurable format.
Gmail: List messages in a user's mailbox with optional filtering.
Gmail: Modify the labels applied to a specific message.
Gmail: Create a server-side message filter (rule) that auto-labels matching mail.
| name | gws-gmail-users-settings-filters-list |
| description | Gmail: List the existing message filters (rules) in the user's mailbox. |
List all server-side message filters configured in the user's mailbox. Use this to discover what filters already exist before creating a new one (avoid duplicates).
gws gmail users settings filters list --params '<JSON_PARAMS>'
--params JSON)| Parameter | Required | Default | Description |
|---|---|---|---|
userId | ✓ | — | The user's email address or "me" for the authenticated user |
Returns { "filter": [ { "id", "criteria", "action" }, ... ] }:
{
"filter": [
{
"id": "ANe1Bmg...",
"criteria": { "from": "notifications@github.com" },
"action": { "addLabelIds": ["Label_42"] }
}
]
}
criteria fields include from, to, subject, query, negatedQuery,
hasAttachment, excludeChats, size, sizeComparison.action fields include addLabelIds, removeLabelIds, forward.gws gmail users settings filters list --params '{"userId": "me"}'