List
A marketing list of subscribers.
Table-Specific Information
Select
The driver uses the Salesforce Marketing Cloud APIs to process the following WHERE clause operators for all but date-time values: =, !=, <>, >, >=, <, <=, IN. For date-time values, only > and < are supported. The driver processes other filters client-side within the driver. You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any search criteria that refer to other columns will cause an error.
For example, the following (but not only) queries are processed server side:
SELECT * FROM List SELECT * FROM List WHERE Id = 123 SELECT * FROM List WHERE Id IN (123, 456) SELECT * FROM List WHERE CreatedDate > '2017/01/25'
Insert
You must specify the following field when inserting to this table: ListName.
INSERT INTO List(ListName) VALUES('Test')
Update
You must specify the Id in the WHERE clause when executing an update against this table.
UPDATE List SET ListName='Changed' WHERE Id=123
Delete
You must specify the Id in the WHERE clause when executing a delete against this table.
DELETE FROM List WHERE Id = 123
Columns
Name | Type | ReadOnly | Description |
ID [KEY] | Int | False |
Identifier for an object. |
ObjectID | String | False |
System-controlled, text string identifier for object. |
PartnerKey | String | False |
Unique identifier provided by partner for an object, accessible only via API. |
CreatedDate | Datetime | False |
Indicates the date and time of the object's creation. |
ModifiedDate | Datetime | False |
Indicates the last time object information was modified. |
Client_ID | Int | False |
The Id of the client. |
Client_PartnerClientKey | String | False |
User-defined partner key for an account. |
ListName | String | False |
Name of a specific list. |
Description | String | False |
Describes and provides information regarding the object. |
Category | Int | False |
ID of the folder that an item is located in. |
Type | String | False |
Indicates type of specific list. Valid values include Public, Private, Salesforce, GlobalUnsubscribe, and Master. |
CustomerKey | String | False |
User-supplied unique identifier for an object within an object type. |
ListClassification | String | True |
Specifies the classification for a list. |
AutomatedEmail_ID | Int | False |
Identifier for an object. |