Manual Insert Guide
To insert a target into the database
INSERT INTO Target (Firstname, Lastname, Email)
VALUES ('Users firstname', 'Users lastname', 'email@address.com');
To create a new list
INSERT INTO List (Name) VALUES ('Name of the list');
Adding targets to the list is currently a manual process, but soon there will be stored procedures for adding targets putting them on a list immediately, however currently this doesn't exist, so for the time being you can use this to simply add all targets to a list
INSERT INTO ListTarget (ListID, TargetID) SELECT <ListID Number>, TargetID FROM Target;
To create a campaign.
INSERT INTO Campaign (Name) VALUES ('Campaign name');
To add a list to a campaign (A campaign can contain multiple lists)
SELECT CampaignListAdd (<CampaignID>, <ListID>);
Then send the campaign through the interface.