Table MessageAttachments
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.| Method | Supported | Reference EndPoint |
|---|---|---|
| SELECT | get_message_attachment | |
| INSERT | send_message | |
| UPDATE | ||
| UPSERT | ||
| DELETE | ||
| LOOKUP | get_message |
Examples
SSIS
Use Gmail Connector in API Source component to read data or in API Destination component to read/write data:
Read from MessageAttachments table using API Source
API Source - Gmail
Read / search Gmail messages, download attachments, send mail and more using Gmail REST API.
Gmail
MessageAttachments
| Required Parameters | |
|---|---|
| MessageId | Fill-in the parameter... |
| AttachmentId | Fill-in the parameter... |
Read/write to MessageAttachments table using API Destination
API Destination - Gmail
Read / search Gmail messages, download attachments, send mail and more using Gmail REST API.
Gmail
MessageAttachments
Select
| Required Parameters | |
|---|---|
| MessageId | Fill-in the parameter... |
| AttachmentId | Fill-in the parameter... |
ODBC application
Use these SQL queries in your ODBC application data source:
Get MessageAttachments
SELECT * FROM MessageAttachments
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get MessageAttachments
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM MessageAttachments';
EXEC (@MyQuery) AT [LS_TO_GMAIL_IN_GATEWAY];