blob: 7de517f9ac64ca1b5294b1a277ec96212808d377 [file] [log] [blame]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="gmail_v1.html">Gmail API</a> . <a href="gmail_v1.users.html">users</a> . <a href="gmail_v1.users.settings.html">settings</a> . <a href="gmail_v1.users.settings.filters.html">filters</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#create">create(userId, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a filter.</p>
<p class="toc_element">
<code><a href="#delete">delete(userId, id, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a filter.</p>
<p class="toc_element">
<code><a href="#get">get(userId, id, x__xgafv=None)</a></code></p>
<p class="firstline">Gets a filter.</p>
<p class="toc_element">
<code><a href="#list">list(userId, x__xgafv=None)</a></code></p>
<p class="firstline">Lists the message filters of a Gmail user.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="create">create(userId, body=None, x__xgafv=None)</code>
<pre>Creates a filter.
Args:
userId: string, User&#x27;s email address. The special value &quot;me&quot;
can be used to indicate the authenticated user. (required)
body: object, The request body.
The object takes the form of:
{ # Resource definition for Gmail filters. Filters apply to specific messages
# instead of an entire email thread.
&quot;action&quot;: { # A set of actions to perform on a message. # Action that the filter performs.
&quot;forward&quot;: &quot;A String&quot;, # Email address that the message should be forwarded to.
&quot;removeLabelIds&quot;: [ # List of labels to remove from the message.
&quot;A String&quot;,
],
&quot;addLabelIds&quot;: [ # List of labels to add to the message.
&quot;A String&quot;,
],
},
&quot;id&quot;: &quot;A String&quot;, # The server assigned ID of the filter.
&quot;criteria&quot;: { # Message matching criteria. # Matching criteria for the filter.
&quot;negatedQuery&quot;: &quot;A String&quot;, # Only return messages not matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;subject&quot;: &quot;A String&quot;, # Case-insensitive phrase found in the message&#x27;s subject. Trailing and
# leading whitespace are be trimmed and adjacent spaces are collapsed.
&quot;to&quot;: &quot;A String&quot;, # The recipient&#x27;s display name or email address. Includes recipients in the
# &quot;to&quot;, &quot;cc&quot;, and &quot;bcc&quot; header fields. You can use simply the local part of
# the email address. For example, &quot;example&quot; and &quot;example@&quot; both match
# &quot;example@gmail.com&quot;. This field is case-insensitive.
&quot;size&quot;: 42, # The size of the entire RFC822 message in bytes, including all headers and
# attachments.
&quot;query&quot;: &quot;A String&quot;, # Only return messages matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;excludeChats&quot;: True or False, # Whether the response should exclude chats.
&quot;sizeComparison&quot;: &quot;A String&quot;, # How the message size in bytes should be in relation to the size field.
&quot;hasAttachment&quot;: True or False, # Whether the message has any attachment.
&quot;from&quot;: &quot;A String&quot;, # The sender&#x27;s display name or email address.
},
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Resource definition for Gmail filters. Filters apply to specific messages
# instead of an entire email thread.
&quot;action&quot;: { # A set of actions to perform on a message. # Action that the filter performs.
&quot;forward&quot;: &quot;A String&quot;, # Email address that the message should be forwarded to.
&quot;removeLabelIds&quot;: [ # List of labels to remove from the message.
&quot;A String&quot;,
],
&quot;addLabelIds&quot;: [ # List of labels to add to the message.
&quot;A String&quot;,
],
},
&quot;id&quot;: &quot;A String&quot;, # The server assigned ID of the filter.
&quot;criteria&quot;: { # Message matching criteria. # Matching criteria for the filter.
&quot;negatedQuery&quot;: &quot;A String&quot;, # Only return messages not matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;subject&quot;: &quot;A String&quot;, # Case-insensitive phrase found in the message&#x27;s subject. Trailing and
# leading whitespace are be trimmed and adjacent spaces are collapsed.
&quot;to&quot;: &quot;A String&quot;, # The recipient&#x27;s display name or email address. Includes recipients in the
# &quot;to&quot;, &quot;cc&quot;, and &quot;bcc&quot; header fields. You can use simply the local part of
# the email address. For example, &quot;example&quot; and &quot;example@&quot; both match
# &quot;example@gmail.com&quot;. This field is case-insensitive.
&quot;size&quot;: 42, # The size of the entire RFC822 message in bytes, including all headers and
# attachments.
&quot;query&quot;: &quot;A String&quot;, # Only return messages matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;excludeChats&quot;: True or False, # Whether the response should exclude chats.
&quot;sizeComparison&quot;: &quot;A String&quot;, # How the message size in bytes should be in relation to the size field.
&quot;hasAttachment&quot;: True or False, # Whether the message has any attachment.
&quot;from&quot;: &quot;A String&quot;, # The sender&#x27;s display name or email address.
},
}</pre>
</div>
<div class="method">
<code class="details" id="delete">delete(userId, id, x__xgafv=None)</code>
<pre>Deletes a filter.
Args:
userId: string, User&#x27;s email address. The special value &quot;me&quot;
can be used to indicate the authenticated user. (required)
id: string, The ID of the filter to be deleted. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
</pre>
</div>
<div class="method">
<code class="details" id="get">get(userId, id, x__xgafv=None)</code>
<pre>Gets a filter.
Args:
userId: string, User&#x27;s email address. The special value &quot;me&quot;
can be used to indicate the authenticated user. (required)
id: string, The ID of the filter to be fetched. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Resource definition for Gmail filters. Filters apply to specific messages
# instead of an entire email thread.
&quot;action&quot;: { # A set of actions to perform on a message. # Action that the filter performs.
&quot;forward&quot;: &quot;A String&quot;, # Email address that the message should be forwarded to.
&quot;removeLabelIds&quot;: [ # List of labels to remove from the message.
&quot;A String&quot;,
],
&quot;addLabelIds&quot;: [ # List of labels to add to the message.
&quot;A String&quot;,
],
},
&quot;id&quot;: &quot;A String&quot;, # The server assigned ID of the filter.
&quot;criteria&quot;: { # Message matching criteria. # Matching criteria for the filter.
&quot;negatedQuery&quot;: &quot;A String&quot;, # Only return messages not matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;subject&quot;: &quot;A String&quot;, # Case-insensitive phrase found in the message&#x27;s subject. Trailing and
# leading whitespace are be trimmed and adjacent spaces are collapsed.
&quot;to&quot;: &quot;A String&quot;, # The recipient&#x27;s display name or email address. Includes recipients in the
# &quot;to&quot;, &quot;cc&quot;, and &quot;bcc&quot; header fields. You can use simply the local part of
# the email address. For example, &quot;example&quot; and &quot;example@&quot; both match
# &quot;example@gmail.com&quot;. This field is case-insensitive.
&quot;size&quot;: 42, # The size of the entire RFC822 message in bytes, including all headers and
# attachments.
&quot;query&quot;: &quot;A String&quot;, # Only return messages matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;excludeChats&quot;: True or False, # Whether the response should exclude chats.
&quot;sizeComparison&quot;: &quot;A String&quot;, # How the message size in bytes should be in relation to the size field.
&quot;hasAttachment&quot;: True or False, # Whether the message has any attachment.
&quot;from&quot;: &quot;A String&quot;, # The sender&#x27;s display name or email address.
},
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(userId, x__xgafv=None)</code>
<pre>Lists the message filters of a Gmail user.
Args:
userId: string, User&#x27;s email address. The special value &quot;me&quot;
can be used to indicate the authenticated user. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response for the ListFilters method.
&quot;filter&quot;: [ # List of a user&#x27;s filters.
{ # Resource definition for Gmail filters. Filters apply to specific messages
# instead of an entire email thread.
&quot;action&quot;: { # A set of actions to perform on a message. # Action that the filter performs.
&quot;forward&quot;: &quot;A String&quot;, # Email address that the message should be forwarded to.
&quot;removeLabelIds&quot;: [ # List of labels to remove from the message.
&quot;A String&quot;,
],
&quot;addLabelIds&quot;: [ # List of labels to add to the message.
&quot;A String&quot;,
],
},
&quot;id&quot;: &quot;A String&quot;, # The server assigned ID of the filter.
&quot;criteria&quot;: { # Message matching criteria. # Matching criteria for the filter.
&quot;negatedQuery&quot;: &quot;A String&quot;, # Only return messages not matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;subject&quot;: &quot;A String&quot;, # Case-insensitive phrase found in the message&#x27;s subject. Trailing and
# leading whitespace are be trimmed and adjacent spaces are collapsed.
&quot;to&quot;: &quot;A String&quot;, # The recipient&#x27;s display name or email address. Includes recipients in the
# &quot;to&quot;, &quot;cc&quot;, and &quot;bcc&quot; header fields. You can use simply the local part of
# the email address. For example, &quot;example&quot; and &quot;example@&quot; both match
# &quot;example@gmail.com&quot;. This field is case-insensitive.
&quot;size&quot;: 42, # The size of the entire RFC822 message in bytes, including all headers and
# attachments.
&quot;query&quot;: &quot;A String&quot;, # Only return messages matching the specified query. Supports the same
# query format as the Gmail search box. For example,
# `&quot;from:someuser@example.com rfc822msgid:&lt;somemsgid@example.com&gt;
# is:unread&quot;`.
&quot;excludeChats&quot;: True or False, # Whether the response should exclude chats.
&quot;sizeComparison&quot;: &quot;A String&quot;, # How the message size in bytes should be in relation to the size field.
&quot;hasAttachment&quot;: True or False, # Whether the message has any attachment.
&quot;from&quot;: &quot;A String&quot;, # The sender&#x27;s display name or email address.
},
},
],
}</pre>
</div>
</body></html>