ContentArea
A ContentArea represents a defined section of reusable content.
Table-Specific Information
Select
The 本製品 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 本製品 processes other filters client-side within the 本製品.
For example, the following (but not only) queries are processed server side:
SELECT * FROM ContentArea WHERE Id = 123 SELECT * FROM ContentArea WHERE Id IN (123, 456) SELECT * FROM ContentArea WHERE CreatedDate > '2017/01/25'
Insert
You must specify the following fields when inserting to this table: Name and Content.
INSERT INTO ContentArea (Name, Content) VALUES ('Testing', 'Hello world')
Update
You must specify the Id in the WHERE clause when executing an update against this table.
UPDATE ContentArea SET Name = 'Changed' WHERE Id = 123
Delete
You must specify the Id in the WHERE clause when executing a delete against this table.
DELETE FROM ContentArea WHERE Id = 123
Columns
Name | Type | ReadOnly | Description |
RowObjectID | String | False |
Identifier for the row of an object. |
ObjectID | String | False |
System-controlled, text string identifier for object. |
ID [KEY] | Int | False |
Identifier for an object. |
CustomerKey | String | False |
User-supplied unique identifier for an object within an object type. |
Client_ID | Int | False |
The Id of the client. |
ModifiedDate | Datetime | False |
Indicates the last time object information was modified. |
CreatedDate | Datetime | False |
Date and time of the object's creation. |
CategoryID | Int | False |
Specifies the identifier of the folder containing the email. |
Name | String | False |
Name of the object or property. |
Layout | String | False |
Indicates layout type of content area. |
IsDynamicContent | Bool | False |
Indicates if specific content area contains dynamic content. |
Content | String | False |
Identifies content contained in a content area. |
IsSurvey | Bool | False |
Indicates whether a specific content area contains survey questions. |
IsBlank | Bool | False |
Indicates if specified content area contains no content. |
Key | String | False |
Specifies key associated with content area in HTML body. |