Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $api_url = ""; // << ---- Your Active Campaign API URL should go in here
  2. $api_key = ""; // << ---- Your Active Campaign API Key should go in here
  3. define("ACTIVECAMPAIGN_URL", $api_url);
  4. define("ACTIVECAMPAIGN_API_KEY", $api_key);
  5. require_once("../link/to/includes/ActiveCampaign.class.php"); // << ---- path to the included Active Campaign API file: ActiveCampaign.class.php
  6. $ac = new ActiveCampaign(ACTIVECAMPAIGN_URL, ACTIVECAMPAIGN_API_KEY);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement