SSIS Components for Act-On

Build 25.0.9434

Header

Query the available headers of the email on your ActOn account.

Table Specific Information

Each email header present on you 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 Title of the header must be unique. Fields Title, Text and HTML are required to create a record.

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: To Delete the header, the Id must be specified.

DELETE FROM Header where id = 8

Columns

Name Type Description
Id [KEY] String Id of the Header.
Title String Title of the Header.
Text String Text Version of the header.
Html String HTML for the header.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434