/gmail/v1/users/{userId}/messages/import
POST
/gmail/v1/users/{userId}/messages/importImports a message into only this user's mailbox, with standard email delivery scanning and classification similar to receiving via SMTP. This method doesn't perform SPF checks, so it might not work for some spam messages, such as those attempting to perform domain spoofing. This method does not send a message. Note: This function doesn't trigger forwarding rules or filters set up by the user.
Request
The user's email address. The special value me
can be used to indicate the authenticated user.
Mark the email as permanently deleted (not TRASH) and only visible in Google Vault to a Vault administrator. Only used for Google Workspace accounts.
Source for Gmail's internal date of the message.
Ignore the Gmail spam classifier decision and never mark this email as SPAM in the mailbox.
Process calendar invites in the email and add any extracted meetings to the Google Calendar for this user.
Request samples
Responses
The ID of the last history record that modified this message.
The immutable ID of the message.
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.
List of IDs of labels applied to this message.
The parsed email structure in the message parts.
The message part body for this part, which may be empty for container MIME message parts.
The filename of the attachment. Only present if this message part represents an attachment.
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
.
The MIME type of the message part.
The immutable ID of the message part.
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.
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.
Estimated size in bytes of the message.
A short part of the message text.
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 standard. 3. The Subject
headers must match.
{
"historyId": "string",
"id": "string",
"internalDate": "string",
"labelIds": [
"string"
],
"payload": {
"body": {
"attachmentId": "string",
"data": "string",
"size": 0
},
"filename": "string",
"headers": [
{
"name": "string",
"value": "string"
}
],
"mimeType": "string",
"partId": "string",
"parts": [
{}
]
},
"raw": "string",
"sizeEstimate": 0,
"snippet": "string",
"threadId": "string"
}