blob: ce56458c7df5a442808a753c7a2af989fc0f4781 [file] [log] [blame]
Craig Citro065b5302014-08-14 00:47:23 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="gmail_v1.html">Gmail API</a> . <a href="gmail_v1.users.html">users</a> . <a href="gmail_v1.users.threads.html">threads</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070081 <code><a href="#delete">delete(userId, id, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070082<p class="firstline">Immediately and permanently deletes the specified thread. This operation cannot be undone. Prefer `threads.trash` instead.</p>
Craig Citro065b5302014-08-14 00:47:23 -070083<p class="toc_element">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -080084 <code><a href="#get">get(userId, id, format=None, metadataHeaders=None, x__xgafv=None)</a></code></p>
Craig Citro065b5302014-08-14 00:47:23 -070085<p class="firstline">Gets the specified thread.</p>
86<p class="toc_element">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080087 <code><a href="#list">list(userId, pageToken=None, includeSpamTrash=None, q=None, maxResults=None, labelIds=None, x__xgafv=None)</a></code></p>
Craig Citro065b5302014-08-14 00:47:23 -070088<p class="firstline">Lists the threads in the user's mailbox.</p>
89<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070093 <code><a href="#modify">modify(userId, id, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094<p class="firstline">Modifies the labels applied to the thread. This applies to all messages in the thread.</p>
Craig Citro065b5302014-08-14 00:47:23 -070095<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070096 <code><a href="#trash">trash(userId, id, x__xgafv=None)</a></code></p>
Craig Citro065b5302014-08-14 00:47:23 -070097<p class="firstline">Moves the specified thread to the trash.</p>
98<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070099 <code><a href="#untrash">untrash(userId, id, x__xgafv=None)</a></code></p>
Craig Citro065b5302014-08-14 00:47:23 -0700100<p class="firstline">Removes the specified thread from the trash.</p>
101<h3>Method Details</h3>
102<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700103 <code class="details" id="close">close()</code>
104 <pre>Close httplib2 connections.</pre>
105</div>
106
107<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700108 <code class="details" id="delete">delete(userId, id, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700109 <pre>Immediately and permanently deletes the specified thread. This operation cannot be undone. Prefer `threads.trash` instead.
Craig Citro065b5302014-08-14 00:47:23 -0700110
111Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700112 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700113 id: string, ID of the Thread to delete. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700114 x__xgafv: string, V1 error format.
115 Allowed values
116 1 - v1 error format
117 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700118</pre>
119</div>
120
121<div class="method">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800122 <code class="details" id="get">get(userId, id, format=None, metadataHeaders=None, x__xgafv=None)</code>
Craig Citro065b5302014-08-14 00:47:23 -0700123 <pre>Gets the specified thread.
124
125Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700126 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700127 id: string, The ID of the thread to retrieve. (required)
Craig Citroe633be12015-03-02 13:40:36 -0800128 format: string, The format to return the messages in.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 Allowed values
130 full - Returns the full email message data with body content parsed in the `payload` field; the `raw` field is not used. Format cannot be used when accessing the api using the gmail.metadata scope.
131 metadata - Returns only email message IDs, labels, and email headers.
132 minimal - Returns only email message IDs and labels; does not return the email headers, body, or payload.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800133 metadataHeaders: string, When given and format is METADATA, only include headers specified. (repeated)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700134 x__xgafv: string, V1 error format.
135 Allowed values
136 1 - v1 error format
137 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700138
139Returns:
140 An object of the form:
141
142 { # A collection of messages representing a conversation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800143 &quot;id&quot;: &quot;A String&quot;, # The unique ID of the thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 &quot;messages&quot;: [ # The list of messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700145 { # An email message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800146 &quot;threadId&quot;: &quot;A String&quot;, # The ID of the thread the message belongs to. To add a message or draft to a thread, the following criteria must be met: 1. The requested `threadId` must be specified on the `Message` or `Draft.Message` you supply with your request. 2. The `References` and `In-Reply-To` headers must be set in compliance with the [RFC 2822](https://tools.ietf.org/html/rfc2822) standard. 3. The `Subject` headers must match.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800147 &quot;labelIds&quot;: [ # List of IDs of labels applied to this message.
148 &quot;A String&quot;,
149 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800150 &quot;sizeEstimate&quot;: 42, # Estimated size in bytes of the message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800151 &quot;id&quot;: &quot;A String&quot;, # The immutable ID of the message.
152 &quot;raw&quot;: &quot;A String&quot;, # The entire email message in an RFC 2822 formatted and base64url encoded string. Returned in `messages.get` and `drafts.get` responses when the `format=RAW` parameter is supplied.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800153 &quot;payload&quot;: { # A single MIME message part. # The parsed email structure in the message parts.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800154 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the message part.
155 &quot;partId&quot;: &quot;A String&quot;, # The immutable ID of the message part.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800156 &quot;parts&quot;: [ # The child MIME message parts of this part. This only applies to container MIME message parts, for example `multipart/*`. For non- container MIME message part types, such as `text/plain`, this field is empty. For more information, see RFC 1521.
157 # Object with schema name: MessagePart
158 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800159 &quot;headers&quot;: [ # List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as `To`, `From`, and `Subject`.
160 {
161 &quot;name&quot;: &quot;A String&quot;, # The name of the header before the `:` separator. For example, `To`.
162 &quot;value&quot;: &quot;A String&quot;, # The value of the header after the `:` separator. For example, `someuser@example.com`.
163 },
164 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800165 &quot;body&quot;: { # The body of a single MIME message part. # The message part body for this part, which may be empty for container MIME message parts.
166 &quot;data&quot;: &quot;A String&quot;, # The body data of a MIME message part as a base64url encoded string. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment.
167 &quot;size&quot;: 42, # Number of bytes for the message part data (encoding notwithstanding).
168 &quot;attachmentId&quot;: &quot;A String&quot;, # When present, contains the ID of an external attachment that can be retrieved in a separate `messages.attachments.get` request. When not present, the entire content of the message part body is contained in the data field.
169 },
170 &quot;filename&quot;: &quot;A String&quot;, # The filename of the attachment. Only present if this message part represents an attachment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800171 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800172 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800173 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800174 &quot;internalDate&quot;: &quot;A String&quot;, # The internal message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-received email, this represents the time the message was originally accepted by Google, which is more reliable than the `Date` header. However, for API-migrated mail, it can be configured by client to be based on the `Date` header.
Craig Citro065b5302014-08-14 00:47:23 -0700175 },
176 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800177 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this thread.
178 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Craig Citro065b5302014-08-14 00:47:23 -0700179 }</pre>
180</div>
181
182<div class="method">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800183 <code class="details" id="list">list(userId, pageToken=None, includeSpamTrash=None, q=None, maxResults=None, labelIds=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700184 <pre>Lists the threads in the user&#x27;s mailbox.
Craig Citro065b5302014-08-14 00:47:23 -0700185
186Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700187 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800188 pageToken: string, Page token to retrieve a specific page of results in the list.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800189 includeSpamTrash: boolean, Include threads from `SPAM` and `TRASH` in the results.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800190 q: string, Only return threads matching the specified query. Supports the same query format as the Gmail search box. For example, `&quot;from:someuser@example.com rfc822msgid: is:unread&quot;`. Parameter cannot be used when accessing the api using the gmail.metadata scope.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800191 maxResults: integer, Maximum number of threads to return.
192 labelIds: string, Only return threads with labels that match all of the specified label IDs. (repeated)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700193 x__xgafv: string, V1 error format.
194 Allowed values
195 1 - v1 error format
196 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700197
198Returns:
199 An object of the form:
200
201 {
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800202 &quot;nextPageToken&quot;: &quot;A String&quot;, # Page token to retrieve the next page of results in the list.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800203 &quot;resultSizeEstimate&quot;: 42, # Estimated total number of results.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700204 &quot;threads&quot;: [ # List of threads. Note that each thread resource does not contain a list of `messages`. The list of `messages` for a given thread can be fetched using the threads.get method.
Craig Citro065b5302014-08-14 00:47:23 -0700205 { # A collection of messages representing a conversation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800206 &quot;id&quot;: &quot;A String&quot;, # The unique ID of the thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700207 &quot;messages&quot;: [ # The list of messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700208 { # An email message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800209 &quot;threadId&quot;: &quot;A String&quot;, # The ID of the thread the message belongs to. To add a message or draft to a thread, the following criteria must be met: 1. The requested `threadId` must be specified on the `Message` or `Draft.Message` you supply with your request. 2. The `References` and `In-Reply-To` headers must be set in compliance with the [RFC 2822](https://tools.ietf.org/html/rfc2822) standard. 3. The `Subject` headers must match.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800210 &quot;labelIds&quot;: [ # List of IDs of labels applied to this message.
211 &quot;A String&quot;,
212 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800213 &quot;sizeEstimate&quot;: 42, # Estimated size in bytes of the message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800214 &quot;id&quot;: &quot;A String&quot;, # The immutable ID of the message.
215 &quot;raw&quot;: &quot;A String&quot;, # The entire email message in an RFC 2822 formatted and base64url encoded string. Returned in `messages.get` and `drafts.get` responses when the `format=RAW` parameter is supplied.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800216 &quot;payload&quot;: { # A single MIME message part. # The parsed email structure in the message parts.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800217 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the message part.
218 &quot;partId&quot;: &quot;A String&quot;, # The immutable ID of the message part.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800219 &quot;parts&quot;: [ # The child MIME message parts of this part. This only applies to container MIME message parts, for example `multipart/*`. For non- container MIME message part types, such as `text/plain`, this field is empty. For more information, see RFC 1521.
220 # Object with schema name: MessagePart
221 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800222 &quot;headers&quot;: [ # List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as `To`, `From`, and `Subject`.
223 {
224 &quot;name&quot;: &quot;A String&quot;, # The name of the header before the `:` separator. For example, `To`.
225 &quot;value&quot;: &quot;A String&quot;, # The value of the header after the `:` separator. For example, `someuser@example.com`.
226 },
227 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800228 &quot;body&quot;: { # The body of a single MIME message part. # The message part body for this part, which may be empty for container MIME message parts.
229 &quot;data&quot;: &quot;A String&quot;, # The body data of a MIME message part as a base64url encoded string. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment.
230 &quot;size&quot;: 42, # Number of bytes for the message part data (encoding notwithstanding).
231 &quot;attachmentId&quot;: &quot;A String&quot;, # When present, contains the ID of an external attachment that can be retrieved in a separate `messages.attachments.get` request. When not present, the entire content of the message part body is contained in the data field.
232 },
233 &quot;filename&quot;: &quot;A String&quot;, # The filename of the attachment. Only present if this message part represents an attachment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800234 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800235 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800236 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800237 &quot;internalDate&quot;: &quot;A String&quot;, # The internal message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-received email, this represents the time the message was originally accepted by Google, which is more reliable than the `Date` header. However, for API-migrated mail, it can be configured by client to be based on the `Date` header.
Craig Citro065b5302014-08-14 00:47:23 -0700238 },
239 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800240 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this thread.
241 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Craig Citro065b5302014-08-14 00:47:23 -0700242 },
243 ],
244 }</pre>
245</div>
246
247<div class="method">
248 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
249 <pre>Retrieves the next page of results.
250
251Args:
252 previous_request: The request for the previous page. (required)
253 previous_response: The response from the request for the previous page. (required)
254
255Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 A request object that you can call &#x27;execute()&#x27; on to request the next
Craig Citro065b5302014-08-14 00:47:23 -0700257 page. Returns None if there are no more items in the collection.
258 </pre>
259</div>
260
261<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700262 <code class="details" id="modify">modify(userId, id, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700263 <pre>Modifies the labels applied to the thread. This applies to all messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700264
265Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700266 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700267 id: string, The ID of the thread to modify. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700268 body: object, The request body.
Craig Citro065b5302014-08-14 00:47:23 -0700269 The object takes the form of:
270
271{
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800272 &quot;removeLabelIds&quot;: [ # A list of IDs of labels to remove from this thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700273 &quot;A String&quot;,
Craig Citro065b5302014-08-14 00:47:23 -0700274 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800275 &quot;addLabelIds&quot;: [ # A list of IDs of labels to add to this thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700276 &quot;A String&quot;,
Craig Citro065b5302014-08-14 00:47:23 -0700277 ],
278 }
279
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700280 x__xgafv: string, V1 error format.
281 Allowed values
282 1 - v1 error format
283 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700284
285Returns:
286 An object of the form:
287
288 { # A collection of messages representing a conversation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800289 &quot;id&quot;: &quot;A String&quot;, # The unique ID of the thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700290 &quot;messages&quot;: [ # The list of messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700291 { # An email message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800292 &quot;threadId&quot;: &quot;A String&quot;, # The ID of the thread the message belongs to. To add a message or draft to a thread, the following criteria must be met: 1. The requested `threadId` must be specified on the `Message` or `Draft.Message` you supply with your request. 2. The `References` and `In-Reply-To` headers must be set in compliance with the [RFC 2822](https://tools.ietf.org/html/rfc2822) standard. 3. The `Subject` headers must match.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800293 &quot;labelIds&quot;: [ # List of IDs of labels applied to this message.
294 &quot;A String&quot;,
295 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800296 &quot;sizeEstimate&quot;: 42, # Estimated size in bytes of the message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800297 &quot;id&quot;: &quot;A String&quot;, # The immutable ID of the message.
298 &quot;raw&quot;: &quot;A String&quot;, # The entire email message in an RFC 2822 formatted and base64url encoded string. Returned in `messages.get` and `drafts.get` responses when the `format=RAW` parameter is supplied.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800299 &quot;payload&quot;: { # A single MIME message part. # The parsed email structure in the message parts.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800300 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the message part.
301 &quot;partId&quot;: &quot;A String&quot;, # The immutable ID of the message part.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800302 &quot;parts&quot;: [ # The child MIME message parts of this part. This only applies to container MIME message parts, for example `multipart/*`. For non- container MIME message part types, such as `text/plain`, this field is empty. For more information, see RFC 1521.
303 # Object with schema name: MessagePart
304 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800305 &quot;headers&quot;: [ # List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as `To`, `From`, and `Subject`.
306 {
307 &quot;name&quot;: &quot;A String&quot;, # The name of the header before the `:` separator. For example, `To`.
308 &quot;value&quot;: &quot;A String&quot;, # The value of the header after the `:` separator. For example, `someuser@example.com`.
309 },
310 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800311 &quot;body&quot;: { # The body of a single MIME message part. # The message part body for this part, which may be empty for container MIME message parts.
312 &quot;data&quot;: &quot;A String&quot;, # The body data of a MIME message part as a base64url encoded string. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment.
313 &quot;size&quot;: 42, # Number of bytes for the message part data (encoding notwithstanding).
314 &quot;attachmentId&quot;: &quot;A String&quot;, # When present, contains the ID of an external attachment that can be retrieved in a separate `messages.attachments.get` request. When not present, the entire content of the message part body is contained in the data field.
315 },
316 &quot;filename&quot;: &quot;A String&quot;, # The filename of the attachment. Only present if this message part represents an attachment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800317 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800318 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800319 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800320 &quot;internalDate&quot;: &quot;A String&quot;, # The internal message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-received email, this represents the time the message was originally accepted by Google, which is more reliable than the `Date` header. However, for API-migrated mail, it can be configured by client to be based on the `Date` header.
Craig Citro065b5302014-08-14 00:47:23 -0700321 },
322 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800323 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this thread.
324 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Craig Citro065b5302014-08-14 00:47:23 -0700325 }</pre>
326</div>
327
328<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700329 <code class="details" id="trash">trash(userId, id, x__xgafv=None)</code>
Craig Citro065b5302014-08-14 00:47:23 -0700330 <pre>Moves the specified thread to the trash.
331
332Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700333 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700334 id: string, The ID of the thread to Trash. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700335 x__xgafv: string, V1 error format.
336 Allowed values
337 1 - v1 error format
338 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700339
340Returns:
341 An object of the form:
342
343 { # A collection of messages representing a conversation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800344 &quot;id&quot;: &quot;A String&quot;, # The unique ID of the thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700345 &quot;messages&quot;: [ # The list of messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700346 { # An email message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800347 &quot;threadId&quot;: &quot;A String&quot;, # The ID of the thread the message belongs to. To add a message or draft to a thread, the following criteria must be met: 1. The requested `threadId` must be specified on the `Message` or `Draft.Message` you supply with your request. 2. The `References` and `In-Reply-To` headers must be set in compliance with the [RFC 2822](https://tools.ietf.org/html/rfc2822) standard. 3. The `Subject` headers must match.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800348 &quot;labelIds&quot;: [ # List of IDs of labels applied to this message.
349 &quot;A String&quot;,
350 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800351 &quot;sizeEstimate&quot;: 42, # Estimated size in bytes of the message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800352 &quot;id&quot;: &quot;A String&quot;, # The immutable ID of the message.
353 &quot;raw&quot;: &quot;A String&quot;, # The entire email message in an RFC 2822 formatted and base64url encoded string. Returned in `messages.get` and `drafts.get` responses when the `format=RAW` parameter is supplied.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800354 &quot;payload&quot;: { # A single MIME message part. # The parsed email structure in the message parts.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800355 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the message part.
356 &quot;partId&quot;: &quot;A String&quot;, # The immutable ID of the message part.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800357 &quot;parts&quot;: [ # The child MIME message parts of this part. This only applies to container MIME message parts, for example `multipart/*`. For non- container MIME message part types, such as `text/plain`, this field is empty. For more information, see RFC 1521.
358 # Object with schema name: MessagePart
359 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800360 &quot;headers&quot;: [ # List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as `To`, `From`, and `Subject`.
361 {
362 &quot;name&quot;: &quot;A String&quot;, # The name of the header before the `:` separator. For example, `To`.
363 &quot;value&quot;: &quot;A String&quot;, # The value of the header after the `:` separator. For example, `someuser@example.com`.
364 },
365 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800366 &quot;body&quot;: { # The body of a single MIME message part. # The message part body for this part, which may be empty for container MIME message parts.
367 &quot;data&quot;: &quot;A String&quot;, # The body data of a MIME message part as a base64url encoded string. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment.
368 &quot;size&quot;: 42, # Number of bytes for the message part data (encoding notwithstanding).
369 &quot;attachmentId&quot;: &quot;A String&quot;, # When present, contains the ID of an external attachment that can be retrieved in a separate `messages.attachments.get` request. When not present, the entire content of the message part body is contained in the data field.
370 },
371 &quot;filename&quot;: &quot;A String&quot;, # The filename of the attachment. Only present if this message part represents an attachment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800372 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800373 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800374 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800375 &quot;internalDate&quot;: &quot;A String&quot;, # The internal message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-received email, this represents the time the message was originally accepted by Google, which is more reliable than the `Date` header. However, for API-migrated mail, it can be configured by client to be based on the `Date` header.
Craig Citro065b5302014-08-14 00:47:23 -0700376 },
377 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800378 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this thread.
379 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Craig Citro065b5302014-08-14 00:47:23 -0700380 }</pre>
381</div>
382
383<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700384 <code class="details" id="untrash">untrash(userId, id, x__xgafv=None)</code>
Craig Citro065b5302014-08-14 00:47:23 -0700385 <pre>Removes the specified thread from the trash.
386
387Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700388 userId: string, The user&#x27;s email address. The special value `me` can be used to indicate the authenticated user. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700389 id: string, The ID of the thread to remove from Trash. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700390 x__xgafv: string, V1 error format.
391 Allowed values
392 1 - v1 error format
393 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700394
395Returns:
396 An object of the form:
397
398 { # A collection of messages representing a conversation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800399 &quot;id&quot;: &quot;A String&quot;, # The unique ID of the thread.
Bu Sun Kim65020912020-05-20 12:08:20 -0700400 &quot;messages&quot;: [ # The list of messages in the thread.
Craig Citro065b5302014-08-14 00:47:23 -0700401 { # An email message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800402 &quot;threadId&quot;: &quot;A String&quot;, # The ID of the thread the message belongs to. To add a message or draft to a thread, the following criteria must be met: 1. The requested `threadId` must be specified on the `Message` or `Draft.Message` you supply with your request. 2. The `References` and `In-Reply-To` headers must be set in compliance with the [RFC 2822](https://tools.ietf.org/html/rfc2822) standard. 3. The `Subject` headers must match.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800403 &quot;labelIds&quot;: [ # List of IDs of labels applied to this message.
404 &quot;A String&quot;,
405 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800406 &quot;sizeEstimate&quot;: 42, # Estimated size in bytes of the message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800407 &quot;id&quot;: &quot;A String&quot;, # The immutable ID of the message.
408 &quot;raw&quot;: &quot;A String&quot;, # The entire email message in an RFC 2822 formatted and base64url encoded string. Returned in `messages.get` and `drafts.get` responses when the `format=RAW` parameter is supplied.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800409 &quot;payload&quot;: { # A single MIME message part. # The parsed email structure in the message parts.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800410 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the message part.
411 &quot;partId&quot;: &quot;A String&quot;, # The immutable ID of the message part.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800412 &quot;parts&quot;: [ # The child MIME message parts of this part. This only applies to container MIME message parts, for example `multipart/*`. For non- container MIME message part types, such as `text/plain`, this field is empty. For more information, see RFC 1521.
413 # Object with schema name: MessagePart
414 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800415 &quot;headers&quot;: [ # List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as `To`, `From`, and `Subject`.
416 {
417 &quot;name&quot;: &quot;A String&quot;, # The name of the header before the `:` separator. For example, `To`.
418 &quot;value&quot;: &quot;A String&quot;, # The value of the header after the `:` separator. For example, `someuser@example.com`.
419 },
420 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800421 &quot;body&quot;: { # The body of a single MIME message part. # The message part body for this part, which may be empty for container MIME message parts.
422 &quot;data&quot;: &quot;A String&quot;, # The body data of a MIME message part as a base64url encoded string. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment.
423 &quot;size&quot;: 42, # Number of bytes for the message part data (encoding notwithstanding).
424 &quot;attachmentId&quot;: &quot;A String&quot;, # When present, contains the ID of an external attachment that can be retrieved in a separate `messages.attachments.get` request. When not present, the entire content of the message part body is contained in the data field.
425 },
426 &quot;filename&quot;: &quot;A String&quot;, # The filename of the attachment. Only present if this message part represents an attachment.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800427 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800428 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800429 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this message.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800430 &quot;internalDate&quot;: &quot;A String&quot;, # The internal message creation timestamp (epoch ms), which determines ordering in the inbox. For normal SMTP-received email, this represents the time the message was originally accepted by Google, which is more reliable than the `Date` header. However, for API-migrated mail, it can be configured by client to be based on the `Date` header.
Craig Citro065b5302014-08-14 00:47:23 -0700431 },
432 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800433 &quot;historyId&quot;: &quot;A String&quot;, # The ID of the last history record that modified this thread.
434 &quot;snippet&quot;: &quot;A String&quot;, # A short part of the message text.
Craig Citro065b5302014-08-14 00:47:23 -0700435 }</pre>
436</div>
437
438</body></html>