List Email Object

A list email is a single email sent to a recipient list.

Learn more about list emails in Salesforce Help.

The API to access the List Email object follows the conventions described in Version 5 Overview.

OperationHTTP VerbURL FormatAbility Requirements
CreatePOSThttps://pi.pardot.com/api/v5/objects/list-emails?<params>Marketing > Emails > Emails > Send To List ability
ReadGEThttps://pi.pardot.com/api/v5/objects/list-emails/<id>?<params>Marketing > Emails > Emails > View ability
QueryGEThttps://pi.pardot.com/api/v5/objects/list-emails?<params>Marketing > Emails > Emails > View ability
StatisticsGEThttps://pi.pardot.com/api/v5/objects/list-emails/<id>/statsMarketing > Emails > Emails > View Report ability
FieldTypeDescription
nameStringThe name of the object for identification in Account Engagement.
campaignIdIntegerThe ID of the campaign related to this object.
recipientListIdsArrayAn array of IDs of the recipient lists. The email is sent to all users on the specified lists. Write-Only field on create operation.
FieldTypeDescription
subjectStringThe list email subject.
textMessageStringThe text content of the email's message. This field isn’t queryable.
htmlMessageStringThe HTML content of the email's message. This field isn’t queryable.
senderOptionsSender Options[]An array of the sender options.
replyToOptionsReply To Options[]An array of the reply to address options.
scheduledTimeDateTimeThe ISO 8601 date and time to send the email. Write-Only field on create operation.
isOperationalBooleanWhen true, the email is sent to the prospect regardless of opt-out status. Your account must have Operational Email Sending enabled to use this setting.
emailTemplateIdIntegerThe ID of the email template used for the list email.
trackerDomainIdIntegerThe ID of the tracker domain used for the list email.
suppressionListIdsArrayAn array of IDs of the suppression lists. The email isn’t sent to any user on the suppression lists. Write-Only field on create operation.
folderIdIntegerThe ID of the folder containing this object.
FieldTypeDescription
idIntegerThe ID of the list email.
isPausedBooleanTrue if the email send is paused.
isSentBooleanTrue if the email has been sent.
isDeletedBooleanTrue if the object is in the recycle bin in Account Engagement.
clientTypeStringThe type of client that was used to send the email. The value is Builder if the email was sent using the Lightning Email Builder, or Web if it was sent using the legacy Pardot email builder.
createdByIdIntegerThe ID of the user who created this object.
updatedByIdIntegerThe ID of the user who last updated this object.
createdAtDateTimeCreation time of the list email.
updatedAtDateTimeLast update time of the list email.
sentAtDateTimeThe date and time when the list email was sent.
operationalEmailBooleanDeprecated. Use isOperational instead. True if the email is operational.
recipientListsRecipient Lists[]An array of the lists used for this list email.
suppressionListsSuppression Lists[]An array of the lists used as suppression lists for the list email.
createdByUserUser object representing the user who created this object. See documentation for User for fields.
updatedByUserUser object representing the user who last updated this object. See documentation for User for fields.
campaignCampaignCampaign object representing the campaign that was set on Create. See documentation for Campaign for fields.
folderFolderJSON object representing the folder for this object. See documentation for Folder for fields.
trackerDomainTracker DomainTracker Domain object representing the tracker domain associated with this object. See documentation for Tracker Domain for fields.
typeEnumThe content type of the email. Possible values are html (Read and Query only), text, and htmlAndText.
Field NameData TypeDescription
senderOptions.typeEnum<string>The sending user type. Can be general_user, specific_user, assigned_user or account_owner. When performing read or query, account_custom_field and prospect_custom_field are also available.
senderOptions.addressStringThe sending email address.
senderOptions.nameStringThe name of the sender.
senderOptions.userIdIntegerThe user ID of the sender.
senderOptions.prospectCustomFieldIdIntegerThe ID of the prospect custom field that contains the sender value.
senderOptions.accountCustomFieldIdIntegerThe ID of the account custom field that contains the sender value.
Field NameData TypeDescription
replyToOptions.typeEnum<string>The reply to user type. Can be general_address, specific_user, assigned_user or account_owner. When performing read or query, account_custom_field and prospect_custom_field are also available.
replyToOptions.addressStringThe reply-to email address.
replyToOptions.userIdIntegerThe user ID of the reply to sender.
replyToOptions.prospectCustomFieldIdIntegerThe ID of the prospect custom field that contains the reply to value. This field isn’t editable.
replyToOptions.accountCustomFieldIdIntegerThe ID of the account custom field that contains the reply to value. This field isn’t editable.

Send an email to every prospect on the specified list following the conventions described in the Version 5 Overview.

Example Request

A successful request returns an HTTP 201 response. The response lists the fields that were specified in the request.

Retrieve a single list email following the conventions described in the Version 5 Overview.

Example request:

Example response:

Retrieving a collection of list emails follows the conventions described in Version 5 Overview.

Example request:

Example response:

Request statistical information for a list email, such as the number of clicks, opens, and opt-outs.

Example request:

Example response:

When executing a query, the following fields can be specified. See the conventions for query described in the Version 5 Overview.

  • id
  • createdAt
  • updatedAt
  • sentAt

When executing a query, the following parameters can be used to filter the returned results. These parameters can be specified in the request along with any shared parameters defined in Version 5 Overview. When specifying more than one parameter, all parameters must match the record in order for it to be returned in the results.

ParameterDescription
idReturns any list emails where ID is equal to the given integer value.
idListReturns any list emails where ID is included in the given list of values.
idGreaterThanReturns any list emails where ID is greater than the specified value, non-inclusive.
idGreaterThanOrEqualToReturns any list emails where ID is greater than or equal to the specified value.
idLessThanReturns any list emails where ID is less than the specified value, non-inclusive.
idLessThanOrEqualToReturns any list emails where ID is less than or equal to the specified value.
createdAtReturns any list emails where CreatedAt is equal to the given datetime value.
createdAtAfterReturns any list emails where CreatedAt is after the given datetime value, non-inclusive.
createdAtAfterOrEqualToReturns any list emails where CreatedAt is after or equal to the given datetime value.
createdAtBeforeReturns any list emails where CreatedAt is before the given datetime value, non-inclusive.
createdAtBeforeOrEqualToReturns any list emails where CreatedAt is before or equal to the given datetime value.
updatedAtReturns any list emails where UpdatedAt is equal to the given datetime value.
updatedAtAfterReturns any list emails where UpdatedAt is after the given datetime value, non-inclusive.
updatedAtAfterOrEqualToReturns any list emails where UpdatedAt is after or equal to the given datetime value.
updatedAtBeforeReturns any list emails where UpdatedAt is before the given datetime value, non-inclusive.
updatedAtBeforeOrEqualToReturns any list emails where UpdatedAt is before or equal to the given datetime value.
sentAtReturns any list emails where SentAt is equal to the given datetime value.
sentAtAfterReturns any list emails where SentAt is after the given datetime value, non-inclusive.
sentAtAfterOrEqualToReturns any list emails where SentAt is after or equal to the given datetime value.
sentAtBeforeReturns any list emails where SentAt is before the given datetime value, non-inclusive.
sentAtBeforeOrEqualToReturns any list emails where SentAt is before or equal to the given datetime value.