Header
Query the available headers of the email on your Act-On account.
Table Specific Information
Each email header present on your Act-On Account.
Select
Get a list of headers in the account:
SELECT * FROM Header
Insert
Add a new header to your account.
Note: The fields Title, Text, and HTML are required to create a record. The Title of the header must be unique.
INSERT INTO Header(Title, Text, HTML) VALUES('Test Value', 'hello', 'html text');Update
Update the specified header.
Note: To update the header, the Id must be specified.
UPDATE Header SET HTML = 'made some changes' where id=9;
Delete
Delete the specified header from your account.
Note: You must specify the Id to delete the header.
DELETE FROM Header where id = 8
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | True |
The Id of the header. |
| Title | String | False |
The title of the header. |
| Text | String | False |
The text version of the header. |
| Html | String | False |
The HTML for the header. |