Jump to a Section

Events

  • Email Bounce

    Start FLO when an email bounces.

  • Email Deferred

    Start FLO when an email is deferred.

  • Email Delivered

    Start FLO when a build finishes

  • Email Dropped

    Start FLO when an email is dropped.

  • Email Opened

    Start FLO when a recipient opens an email.

  • Email Processed

    Start FLO when an email is processed.

  • Email Reported as Spam

    Start FLO when an email is marked as spam by a recipient.

  • New Click

    Start FLO when a recipient clicks on a link in an email.

  • Recipient Resubscribed to Group

    Start FLO when a recipient resubscribes to a specific group by updating their preferences.

  • Recipient Unsubscribed

    Start FLO when a recipient clicks the “Opt Out of All Emails” link.

  • Recipient Unsubscribed from Group

    Start FLO when a recipient unsubscribes from a specific group, either by direct link or by updating their preferences.

Actions

  • Add Recipients to List

    Add recipients to intended list.

    Input Fields

    • List
      • List ID* (number): Identification number of the list.
    • Recipients
      • Recipient IDs* (number): Identification number associated with recipient(s).

    Output Fields

    • There are no output fields
  • Add Recipients to Suppression Group

    Add intended recipients to suppression group.

    Input Fields

    • Group 
      • Group ID* (number): Identification number of associated group.
      • Recipient Emails (list): Emails of intended recipients.

    Output Fields

    • There are no output fields
  • Create Campaign

    Create new campaign.

    Input Fields

    • Campaign
      • Title (text): Title/Name of campaign
      • Subject (text): Main subject of message of campaign.
      • HTML Content (text): Content from campaign coded to HTML (e.g.,etc…)</li> <li><strong>Plain Text Content</strong> (<em>text</em>): Content from campaign written in regular text (e.g. “Title of campaign”)</li> <li><strong>Sender ID</strong> (<em>number</em>): Identification number of sender.</li> <li><strong>List IDs</strong> (<em>list</em>): Identification codes of total lists associated with campaign.</li> <li><strong>Segment IDs</strong> (<em>list</em>): Identification codes of total segments associated with campaign.</li> <li><strong>Categories</strong> (<em>list</em>): List of total categories associated with campaign.</li> <li><strong>Suppression Group ID</strong> (<em>number</em>): Identification number of suppression group associated with campaign. Suppression groups allow you to segment your email by a grouping which is most often defined by the types of email. Example: Receipts, Deals emails, and notification.</li> <li><strong>Custom Unsubscriber URL</strong> (<em>text</em>): URL link for recipient to unsubscribe from future contact from campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Campaign ID</strong>* (<em>number</em>): Identification number of the Campaign.</li> </ul> </div> </article> </div> </li> <li id="createList" class="list-entry"> <h3 id="create list" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/createlist/">Create List</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Create list within SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>List</strong> <ul> <li><strong>List Name</strong>* <em>(text)</em>: Name/Title of list.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>List ID</strong> <em>(number)</em>: Identification number correlated to list.</li> </ul> </div> </article> </div> </li> <li id="createRecipient" class="list-entry"> <h3 id="create recipient" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/createrecipient/">Create Recipient</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Create new recipient in SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Recipient</strong> <ul> <li><strong>Email Address</strong>* (<em>text</em>): Email address of searched recipient.</li> <li><strong>First Name</strong>* (<em>text</em>): First name of searched recipient.</li> <li><strong>Last Name</strong> (<em>text</em>): Last name of searched recipient.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Recipient</strong> <ul> <li><strong>Recipient ID</strong>* (<em>text</em>): Identification code of read recipient.</li> </ul></li> </ul> </div> </article> </div> </li> <li id="customAPIAction" class="list-entry"> <h3 id="custom api action" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/customapiaction/">Custom API Action</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>This action allows you to make a custom, authenticated HTTP call to the Sendgrid REST API.</p> <p><strong>NOTE:</strong> Most of the operation can be found on <a href="https://sendgrid.com/docs/API_Reference/Web_API_v3/index.html">documentation</a>, we are using Web api v3!</p> <h4 id="options">Options</h4> <ul> <li><p><strong>Request Type</strong> <em>(dropdown)</em>: your available HTTP request methods. There are 5 supported HTTP request methods (sometimes called <em>verbs</em>) in custom API calls:</p> <ul> <li><p><strong>GET:</strong> retrieves data from a web server based on your parameters. GET requests a representation of the specified resource, and if successful will receive a 2** OK response message with the requested content. <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/GET">Additional documentation here</a>.</p></li> <li><p><strong>POST:</strong> sends data to a web server based on your parameters. POST requests include actions like uploading a file. Multiple POST’s may result in a different outcome than a single POST, so you should be cautious about unintentionally sending multiple POST’s. If a POST is successful, you will receive a 2** OK response message. <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST">Additional documentation here</a>.</p></li> <li><p><strong>PUT:</strong> sends data to a location in the web server based on your parameters. PUT requests include actions like uploading a file. The difference between a PUT and POST is that PUT is <em>idempotent</em>, meaning that the result of a single successful PUT is the same as many identical PUT’s. If a PUT is successful, you will receive a 2** response message (usually 201 or 204). <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT">Additional documentation here</a>.</p></li> <li><p><strong>PATCH:</strong> applies partial modifications to a resource on a web server based on your parameters. PATCH is not <em>idempotent</em>, meaning that the result of multiple PATCH’s could have unintended consequences. If a PUT is successful, you will receive a 2** response message (usually 204). <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH">Additional documentation here</a>.</p></li> <li><p><strong>DELETE:</strong> deletes the specified resource from the web server based on your parameters (if the resource exists). If a DELETE is successful, you will receive a 2** OK response message (Usually 202). <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/DELETE">Additional documentation here</a>.</p></li> </ul></li> </ul> <h4 id="input-data">Input Data</h4> <ul> <li><p><strong>Relative URL</strong> <em>(text)</em>: the address on the web server you are attempting to interact with. <code>Relative URL</code> means that you don’t have to explicitly specify the protocol at the beginning of the URL (such as “http://“). This suggests to the web server that the interaction is occurring on the server (in this instance). The {xx} need to be replaced by the respective argument.</p> <div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4">Example: /now/{tablename}</pre></div></li> <li><p><strong>Query</strong> <em>(object <strong>or</strong> text)</em>: JSON object that determines the action taken at the URL.</p> <div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4">Example: {"name":"something-urgent"}</pre></div></li> <li><p><strong>Headers</strong> <em>(object)</em>: JSON that determines the content type of the request. This will usually be a replica of the example below.</p> <div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4">Example: {"Content-type":"application/json"}</pre></div></li> </ul> <h4 id="output-data">Output Data</h4> <ul> <li><p><strong>Status Code</strong> <em>(Number)</em>: the success or failure of your HTTP request. <a href="https://en.wikipedia.org/wiki/List_of_HTTP_status_codes">Here is a list of all status codes</a>.</p></li> <li><p><strong>Headers</strong> <em>(object)</em>: a more detailed context for the response/status code that doesn’t relate to the output body. Not all headers that appear in a response header are response headers, meaning that some are unlikely to be useful to you.</p></li> </ul> <p>The response headers are dependent on the HTTP request you choose in options.</p> <ul> <li><strong>Body</strong> <em>(object)</em>: depending on the HTTP request you chose in <strong>Options</strong>, you may receive some data back. That data, such as the data from a GET request, will be contained in this Body object.</li> </ul> </div> </article> </div> </li> <li id="deleteCampaign" class="list-entry"> <h3 id="delete campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/deletecampaign/">Delete Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Deletes searched campaign.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Read By</strong> <ul> <li><strong>Campaign ID</strong> (<em>number</em>): Identification number of the Campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li><li id="listRecepients" class="list-entry"> <h3>List Recepients</h3> <p class="placeholder"></p> </li> <li id="readAllCampaigns" class="list-entry"> <h3 id="read all campaigns" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readallcampaigns/">Read All Campaigns</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Reads entire list of campaigns on SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Test Button</strong></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Campaigns</strong> <ul> <li><strong>Campaigns</strong> <em>(list)</em>: List of all total campaigns associated on account.</li> </ul></li> </ul> <p>Click <a href="https://sendgrid.com/docs/API_Reference/Web_API_v3/Marketing_Campaigns/campaigns.html">here</a> for more information.</p> </div> </article> </div> </li> <li id="readAllLists" class="list-entry"> <h3 id="read all lists" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readalllists/">Read All Lists</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Read all lists on SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li>There are no input fields</li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>List</strong> <ul> <li><strong>Lists</strong> (<em>list</em>): Drop down menu containing every list and information about them.</li> </ul></li> </ul> </div> </article> </div> </li> <li id="readCampaign" class="list-entry"> <h3 id="read campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readcampaign/">Read Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Reads searched campaign.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Read By</strong> <ul> <li><strong>Campaign ID</strong> (<em>number</em>): Identification number of the Campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Campaign</strong> <ul> <li><strong>Title</strong> (<em>text</em>): Title/Name of campaign</li> <li><strong>Subject</strong> (<em>text</em>): Main subject of message of campaign.</li> <li><strong>HTML Content</strong> (<em>text</em>): Content from campaign coded to HTML (e.g.<html><head><title>,etc…)</li> <li><strong>Plain Text Content</strong> (<em>text</em>): Content from campaign written in regular text (e.g. “Title of campaign”)</li> <li><strong>Sender ID</strong> (<em>number</em>): Identification number of sender.</li> <li><strong>List IDs</strong> (<em>list</em>): Identification codes of total lists associated with campaign.</li> <li><strong>Segment IDs</strong> (<em>list</em>): Identification codes of total segments associated with campaign.</li> <li><strong>Categories</strong> (<em>list</em>): List of total categories associated with campaign.</li> <li><strong>Suppression Group ID</strong> (<em>number</em>): Identification number of suppression group associated with campaign. Suppression groups allow you to segment your email by a grouping which is most often defined by the types of email. Example: Receipts, Deals emails, and notification.</li> <li><strong>Custom Unsubscriber URL</strong> (<em>text</em>): URL link for recipient to unsubscribe from future contact from campaign.</li> <li><strong>Campaign Status</strong> (<em>text</em>): Status of campaign (Eg. Draft, Sent).</li> </ul></li> </ul> </div> </article> </div> </li> <li id="readList" class="list-entry"> <h3 id="read list" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readlist/">Read List</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Read list within SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>List</strong> <ul> <li><strong>List ID</strong> <em>(number)</em>: Identification number correlated to list.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>List</strong> <ul> <li><strong>Name</strong> <em>(text)</em>: Name/Title of list.</li> <li><strong>Recipient Count</strong> <em>(number)</em>: Number of total recipients associated with list.</li> <li><strong>Recipients</strong> <em>(list)</em>: List of total recipients on list</li> </ul></li> </ul> </div> </article> </div> </li> <li id="readRecipient" class="list-entry"> <h3 id="readrecipients" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readrecipient/">ReadRecipients</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="read-recipient">Read Recipient</h3> <p>Read recipient in SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Read by</strong> <ul> <li><strong>Recipient ID</strong>* (<em>text</em>): Identification code of read recipient.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Recipient</strong> <ul> <li><strong>Email Address</strong> (<em>text</em>): Email address of searched recipient.</li> <li><strong>First Name</strong> (<em>text</em>): First name of searched recipient.</li> <li><strong>Last Name</strong> (<em>text</em>): Last name of searched recipient.</li> <li><strong>Created At</strong> <em>(number</em>): Recipient profile created at.</li> <li><strong>Last Clicked</strong> (<em>text</em>): Recipient’s profile last clicked at certain time.</li> </ul></li> </ul> </div> </article> </div> </li> <li id="readRecipientLists" class="list-entry"> <h3 id="read recipient lists" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/readrecipientlists/">Read Recipient Lists</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Reads entire list of recipients on SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Read by</strong> <ul> <li><strong>Recipient ID</strong>* <em>(text)</em>: Identification code of recipient.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li><strong>Recipient</strong> <ul> <li><strong>Lists</strong> <em>(list)</em>: List of total recipients associated on account.</li> </ul></li> </ul> </div> </article> </div> </li> <li id="removeRecipientFromList" class="list-entry"> <h3 id="deleterecipientfromlist" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/removerecipientfromlist/">DeleteRecipientFromList</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="delete-recipient-from-list">Delete Recipient From List</h3> <p>Delete recipient from intended list.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>List</strong> <ul> <li><strong>List ID</strong>* (<em>number</em>): Identification number of the list.</li> </ul></li> <li><strong>Recipients</strong> <ul> <li><strong>Recipient IDs</strong>* <em>(number</em>): Identification number associated with recipient(s).</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li> <li id="removeRecipientFromSuppressionGroup" class="list-entry"> <h3 id="remove recipient from suppression group" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/removerecipientfromsuppressiongroup/">Remove Recipient from Suppression Group</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Remove intended recipients from suppression group.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Group </strong> <ul> <li><strong>Group ID</strong>* (<em>number</em>): Identification number of associated group.</li> <li><strong>Recipient Email</strong> (<em>text</em>): Emails of removed recipient.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li> <li id="scheduleCampaign" class="list-entry"> <h3 id="schedule campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/schedulecampaign/">Schedule Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="schedule-campaign">Schedule Campaign</h3> <p>Schedule the time that the campaign will send.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Campaign</strong> <ul> <li><strong>Campaign ID</strong> (<em>number</em>): Identification number of the Campaign.</li> <li><strong>Send At</strong> (<em>number</em>): Time campaign will be sent.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li> <li id="searchRecipients" class="list-entry"> <h3 id="search recipients" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/searchrecipients/">Search Recipients</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="search-recipient">Search Recipient</h3> <p>Search Recipient in SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Search</strong> <ul> <li><strong>Email Address</strong> (<em>text</em>): Email address of searched recipient.</li> <li><strong>First Name</strong> (<em>text</em>): First name of searched recipient.</li> <li><strong>Last Name</strong> (<em>text</em>): Last name of searched recipient.</li> <li><strong>Last Emailed At</strong> (<em>text</em>): Time recipient was last emailed at.</li> <li><strong>Last Clicked At</strong> (<em>text</em>): Recipient’s profile last clicked at certain time.</li> <li><strong>Last Opened At</strong> (<em>text</em>): Recipient’s profile last opened at certain time.</li> <li><strong>Created At</strong> (number): Recipient profile created at.</li> <li><strong>Updated At</strong> (<em>number</em>): Recipient last updated at.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li> <li id="sendCampaign" class="list-entry"> <h3 id="send campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/sendcampaign/">Send Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Immediately send a marketing campaign.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Campaign</strong> <ul> <li><strong>Campaign ID</strong> (<em>number</em>): Identification number of the Campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li><li id="sendEmail" class="list-entry"> <h3>Send Email</h3> <p class="placeholder">Send Email.</p> </li> <li id="sendEmailTrigger" class="list-entry"> <h3 id="send email trigger" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/sendemailtrigger/">Send Email trigger</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Send a trigger email.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Email</strong> <ul> <li><strong>To</strong> (<em>text</em>): Indicated recipient.</li> <li><strong>Subject</strong> (<em>text</em>): Main subject of message to recipient.</li> <li><strong>From</strong> (<em>text</em>): Title of sender of email.</li> <li><strong>Content Type</strong> (<em>text</em>): Indicates media type of the resource.</li> <li><strong>Content Value</strong> (<em>text</em>): Body of message in email.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no outputs</li> </ul> <p>Click <a href="https://sendgrid.com/docs/API_Reference/Web_API_v3/How_To_Use_The_Web_API_v3/responses.html">here</a> for more information</p> </div> </article> </div> </li> <li id="unscheduleCampaign" class="list-entry"> <h3 id="unschedule campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/unschedulecampaign/">Unschedule Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="unschedule-campaign">Unschedule Campaign</h3> <p>Unschedule already scheduled campaign.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Campaign</strong> <ul> <li><strong>Campaign ID</strong> (<em>number</em>): Identification number of the Campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li> <li id="updateCampaign" class="list-entry"> <h3 id="update campaign" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/updatecampaign/">Update Campaign</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <p>Update a campaign.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Update By</strong> <ul> <li><strong>Campaign ID</strong>* (<em>number</em>): Identification number of the Campaign.</li> </ul></li> <li><strong>Campaign</strong> <ul> <li><strong>Title</strong> (<em>text</em>): Title/Name of campaign</li> <li><strong>Subject</strong> (<em>text</em>): Main subject of message of campaign.</li> <li><strong>HTML Content</strong> (<em>text</em>): Content from campaign coded to HTML (e.g. <code><title>, etc...</code>)</li> <li><strong>Plain Text Content</strong> (<em>text</em>): Content from campaign written in regular text (e.g. “Title of campaign”)</li> <li><strong>Sender ID</strong> (<em>number</em>): Identification number of sender.</li> <li><strong>List IDs</strong> (<em>list</em>): Identification codes of total lists associated with campaign.</li> <li><strong>Segment IDs</strong> (<em>list</em>): Identification codes of total segments associated with campaign.</li> <li><strong>Categories</strong> (<em>list</em>): List of total categories associated with campaign.</li> <li><strong>Suppression Group ID</strong> (<em>number</em>): Identification number of suppression group associated with campaign. Suppression groups allow you to segment your email by a grouping which is most often defined by the types of email. Example: Receipts, Deals emails, and notification.</li> <li><strong>Custom Unsubscriber URL</strong> (<em>text</em>): URL link for recipient to unsubscribe from future contact from campaign.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields.</li> </ul> </div> </article> </div> </li> <li id="updateRecipient" class="list-entry"> <h3 id="update recipient" class="header-post-title-class"> <a href="https://learn.azuqua.com/connector-reference/sendgrid2/updaterecipient/">Update Recipient</a> </h3> <div class="clearfix"> <article class="page type-page status-publish hentry"> <div class="entry-content clearfix"> <h3 id="updaterecipient">UpdateRecipient</h3> <p>Update recipient in SendGrid.</p> <h4 id="input-fields">Input Fields</h4> <ul> <li><strong>Update By</strong> <ul> <li><strong>Recipient ID</strong>* (<em>text</em>): Identification code of read recipient.</li> </ul></li> <li> <strong>Recipient</strong> <ul> <li><strong>First Name</strong> (<em>text</em>): First name of searched recipient.</li> <li><strong>Last Name</strong> (<em>text</em>): Last name of searched recipient.</li> </ul></li> </ul> <p><strong>Output Fields</strong></p> <ul> <li>There are no output fields</li> </ul> </div> </article> </div> </li><li id="updateScheduledCampaign" class="list-entry"> <h3>Update Scheduled Campaign</h3> <p class="placeholder">Update the time that a scheduled campaign will send.</p> </li></ul></div> </div> </div> </div> </article> </div> </div> </div> <footer id="colophon" class="clearfix"> <div class="footer-socket-wrapper clearfix"> <div class="inner-wrap"> <div class="footer-socket-area"> <div class="copyright">Copyright © 2022 Azuqua</div> </div> </div> </div> </footer> <a href="#masthead" id="scroll-up"></a> </div> <script src="//fast.appcues.com/32710.js"></script></body> </html>