Example Usage of
campaign_create
Create new campaign.
Description: | Create and send a new campaign (immediately or scheduled for the future). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Endpoint: | /admin/api.php?api_action=campaign_create |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HTTP method: | POST |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Supported output formats: | xml, json, serialize |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Requires authentication: | true |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters: |
* indicates requirement. Underlined params include in URL, otherwise as part of the post body. POST data must be formatted as
Content-Type: application/x-www-form-urlencoded. We don't accept any other input formats like JSON.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example response: |
|
PHP Example
This is an example of using the campaign_create
call with PHP. You can replicate the same idea in virtually any other programming language. The example shown is using serialize
as the output format. You can change that to XML
or JSON
if you would like.
<?php
// By default, this sample code is designed to get the result from your installation and print out the result
$url = 'http://account.api-us1.com';
$params = array(
// the API Key can be found on the "Your Settings" page under the "API" tab.
// replace this with your API Key
'api_key' => 'YOUR_API_KEY',
// this is the action that creates a campaign
'api_action' => 'campaign_create',
// define the type of output you wish to get back
// possible values:
// - 'xml' : you have to write your own XML parser
// - 'json' : data is returned in JSON format and can be decoded with
// json_decode() function (included in PHP since 5.2.0)
// - 'serialize' : data is returned in a serialized format and can be decoded with
// a native unserialize() function
'api_output' => 'serialize',
);
// here we define the data we are posting in order to perform an update
$post = array(
'type' => 'single', // campaign type (defaults to single)
// 'single', 'recurring', 'split', 'responder', 'reminder', 'special', 'activerss', 'text'
'segmentid' => 0, // use list segment with ID (0 for no segment),
'bounceid' => -1,
// -1: use all available bounce accounts, 0: don't use bounce management, or ID of a bounce account
'name' => 'ActiveCampaign TEST: ' . date("m/d/Y H:i", strtotime("now")),
'sdate' => '2011-10-05 08:40:00', // the date when campaign should be sent out
// not used for 'responder', 'reminder', 'special'
'status' => 1, // 0: draft, 1: scheduled
'public' => 1, // if campaign should be visible via public side
//'mailer_log_file' => 4, // turn on logging for this campaign (will be stored in /cache/ folder)
'tracklinks' => 'all', // possible values: 'all', 'mime', 'html', 'text', 'none'
// setting this value to all will let the system know to fetch, parse, and track all emails it finds in both TEXT and HTML body
// if mime/html/text is provided, then variable 'links' also must exist, with a list of URLs to track
// choosing html or text will track only the links in that message body
//'tracklinksanalytics' => 1, // set to 1 if you wish to use list's Google Analytics settings
//'analytics_campaign_name' => '', // set the name of this campaign to use in Google Analytics
'trackreads' => 1, // possible values: 0 and 1
'trackreplies' => 0, // possible values: 0 and 1
//'tweet' => 1, // set to 1 if you wish to use list's Twitter settings
//'facebook' => 1, // set to 1 if you wish to use list's Facebook settings
//'embed_images' => 1, // uncomment this line if you wish to embed images
'htmlunsub' => 1, // append unsubscribe link to the bottom of HTML body
'textunsub' => 1, // append unsubscribe link to the bottom of TEXT body
// provide custom unsubscribe link addons
//'htmlunsubdata' => '<div><a href="%UNSUBSCRIBELINK%">Click here</a> to unsubscribe from future mailings.</div>', // (DOWNLOADED USERS ONLY)
//'textunsubdata' => 'Click here to unsubscribe from future mailings: %UNSUBSCRIBELINK%', // (DOWNLOADED USERS ONLY)
/* IF RECURRING MAILING */
//'recurring' => 'day1', // repeat every day
// possible values are day1, day2, week1, week2, month1, month2, quarter1, quarter2, year1, year2
// values ending with 1 mean "every", and ending with 2 mean "every other"
/* IF SPLIT MAILING */
//'split_type' => 'even', // send each message to even number of contacts
// possible values are even, read and click. if read or click is used, 'split_offset' and 'split_offset_type' need to be present.
// in that case it will use a "winner" scenario
//'split_offset' => 12, // how much to wait
//'split_offset_type' => 'hour', // how long to wait. possible values: hour, day, week, month
/* IF AUTO-RESPONDER */
//'responder_offset' => 12, // how long after (un)subscription to send it
//'responder_type' => 'subscribe', // after what to send it. possible values are: subscribe and unsubscribe
/* IF AUTO-REMINDER */
//'reminder_field' => 12, // what contact field to use. possible values are cdate, sdate, udate, or an ID of a custom field
//'reminder_format' => 'yyyy-mm-dd', // format in which the date is represented in abovementioned contact field
//'reminder_type' => 'month_day', // match just a month and the day (yearly), or match year as well.
//possible values: month_day, year_month_day
//'reminder_offset' => 5, // how many days/weeks/months/years from that date should it trigger
//'reminder_offset_type' => 'day', // possible values: day, week, month, year
//'reminder_offset_sign' => '+', // possible values: + and -.
// in this case it would be: +5days from today needs to be the value of contact's field
/* IF ACTIVERSS */
//'activerss_interval' => 'day1', // same options as for recurring mailings
// send to lists:
'p[1]' => 1, // example list ID
//'p[1]' => 345, // some additional lists?
// send message(s):
'm[70]' => 100, // example message ID would be 123. 100 means send to 100% of contacts
/* IF SPLIT MAILING */
// if sending a split mailing with "winner" scenario, more than one message can be provided.
// in that case, the sum of all messages should total to under 100%
// (so the rest of contacts can receive a winner message after it is determined)
//'m[453643]' => 10, // some additional messages?
//'m[346146]' => 10, // some additional messages?
// if 'tracklinks' variable is not set to 'all', provide a list of links to track here
// tracked link example
//'linkurl[0]' => 'http://www.google.com/',
//'linkname[0]' => 'Google Inc.',
//'linkmessage[0]' => 123, // found in message with this ID
// more tracked links...
//'linkurl[1]' => 'http://www.yahoo.com/',
//'linkname[1]' => 'Yahoo Inc.',
//'linkmessage[1]' => 345, // found in message with this ID
);
// This section takes the input fields and converts them to the proper format
$query = "";
foreach( $params as $key => $value ) $query .= urlencode($key) . '=' . urlencode($value) . '&';
$query = rtrim($query, '& ');
// This section takes the input data and converts it to the proper format
$data = "";
foreach( $post as $key => $value ) $data .= urlencode($key) . '=' . urlencode($value) . '&';
$data = rtrim($data, '& ');
// clean up the url
$url = rtrim($url, '/ ');
// This sample code uses the CURL library for php to establish a connection,
// submit your request, and show (print out) the response.
if ( !function_exists('curl_init') ) die('CURL not supported. (introduced in PHP 4.0.2)');
// If JSON is used, check if json_decode is present (PHP 5.2.0+)
if ( $params['api_output'] == 'json' && !function_exists('json_decode') ) {
die('JSON not supported. (introduced in PHP 5.2.0)');
}
// define a final API request - GET
$api = $url . '/admin/api.php?' . $query;
$request = curl_init($api); // initiate curl object
curl_setopt($request, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1)
curl_setopt($request, CURLOPT_POSTFIELDS, $data); // use HTTP POST to send form data
//curl_setopt($request, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment if you get no gateway response and are using HTTPS
curl_setopt($request, CURLOPT_FOLLOWLOCATION, true);
$response = (string)curl_exec($request); // execute curl post and store results in $response
// additional options may be required depending upon your server configuration
// you can find documentation on curl options at http://www.php.net/curl_setopt
curl_close($request); // close curl object
if ( !$response ) {
die('Nothing was returned. Do you have a connection to Email Marketing server?');
}
// This line takes the response and breaks it into an array using:
// JSON decoder
//$result = json_decode($response);
// unserializer
$result = unserialize($response);
// XML parser...
// ...
// Result info that is always returned
echo 'Result: ' . ( $result['result_code'] ? 'SUCCESS' : 'FAILED' ) . '<br />';
echo 'Message: ' . $result['result_message'] . '<br />';
// The entire result printed out
echo 'The entire result printed out:<br />';
echo '<pre>';
print_r($result);
echo '</pre>';
// Raw response printed out
echo 'Raw response printed out:<br />';
echo '<pre>';
print_r($response);
echo '</pre>';
// API URL that returned the result
echo 'API URL that returned the result:<br />';
echo $api;
echo '<br /><br />POST params:<br />';
echo '<pre>';
print_r($post);
echo '</pre>';?>
// By default, this sample code is designed to get the result from your installation and print out the result
$url = 'http://account.api-us1.com';
$params = array(
// the API Key can be found on the "Your Settings" page under the "API" tab.
// replace this with your API Key
'api_key' => 'YOUR_API_KEY',
// this is the action that creates a campaign
'api_action' => 'campaign_create',
// define the type of output you wish to get back
// possible values:
// - 'xml' : you have to write your own XML parser
// - 'json' : data is returned in JSON format and can be decoded with
// json_decode() function (included in PHP since 5.2.0)
// - 'serialize' : data is returned in a serialized format and can be decoded with
// a native unserialize() function
'api_output' => 'serialize',
);
// here we define the data we are posting in order to perform an update
$post = array(
'type' => 'single', // campaign type (defaults to single)
// 'single', 'recurring', 'split', 'responder', 'reminder', 'special', 'activerss', 'text'
'segmentid' => 0, // use list segment with ID (0 for no segment),
'bounceid' => -1,
// -1: use all available bounce accounts, 0: don't use bounce management, or ID of a bounce account
'name' => 'ActiveCampaign TEST: ' . date("m/d/Y H:i", strtotime("now")),
'sdate' => '2011-10-05 08:40:00', // the date when campaign should be sent out
// not used for 'responder', 'reminder', 'special'
'status' => 1, // 0: draft, 1: scheduled
'public' => 1, // if campaign should be visible via public side
//'mailer_log_file' => 4, // turn on logging for this campaign (will be stored in /cache/ folder)
'tracklinks' => 'all', // possible values: 'all', 'mime', 'html', 'text', 'none'
// setting this value to all will let the system know to fetch, parse, and track all emails it finds in both TEXT and HTML body
// if mime/html/text is provided, then variable 'links' also must exist, with a list of URLs to track
// choosing html or text will track only the links in that message body
//'tracklinksanalytics' => 1, // set to 1 if you wish to use list's Google Analytics settings
//'analytics_campaign_name' => '', // set the name of this campaign to use in Google Analytics
'trackreads' => 1, // possible values: 0 and 1
'trackreplies' => 0, // possible values: 0 and 1
//'tweet' => 1, // set to 1 if you wish to use list's Twitter settings
//'facebook' => 1, // set to 1 if you wish to use list's Facebook settings
//'embed_images' => 1, // uncomment this line if you wish to embed images
'htmlunsub' => 1, // append unsubscribe link to the bottom of HTML body
'textunsub' => 1, // append unsubscribe link to the bottom of TEXT body
// provide custom unsubscribe link addons
//'htmlunsubdata' => '<div><a href="%UNSUBSCRIBELINK%">Click here</a> to unsubscribe from future mailings.</div>', // (DOWNLOADED USERS ONLY)
//'textunsubdata' => 'Click here to unsubscribe from future mailings: %UNSUBSCRIBELINK%', // (DOWNLOADED USERS ONLY)
/* IF RECURRING MAILING */
//'recurring' => 'day1', // repeat every day
// possible values are day1, day2, week1, week2, month1, month2, quarter1, quarter2, year1, year2
// values ending with 1 mean "every", and ending with 2 mean "every other"
/* IF SPLIT MAILING */
//'split_type' => 'even', // send each message to even number of contacts
// possible values are even, read and click. if read or click is used, 'split_offset' and 'split_offset_type' need to be present.
// in that case it will use a "winner" scenario
//'split_offset' => 12, // how much to wait
//'split_offset_type' => 'hour', // how long to wait. possible values: hour, day, week, month
/* IF AUTO-RESPONDER */
//'responder_offset' => 12, // how long after (un)subscription to send it
//'responder_type' => 'subscribe', // after what to send it. possible values are: subscribe and unsubscribe
/* IF AUTO-REMINDER */
//'reminder_field' => 12, // what contact field to use. possible values are cdate, sdate, udate, or an ID of a custom field
//'reminder_format' => 'yyyy-mm-dd', // format in which the date is represented in abovementioned contact field
//'reminder_type' => 'month_day', // match just a month and the day (yearly), or match year as well.
//possible values: month_day, year_month_day
//'reminder_offset' => 5, // how many days/weeks/months/years from that date should it trigger
//'reminder_offset_type' => 'day', // possible values: day, week, month, year
//'reminder_offset_sign' => '+', // possible values: + and -.
// in this case it would be: +5days from today needs to be the value of contact's field
/* IF ACTIVERSS */
//'activerss_interval' => 'day1', // same options as for recurring mailings
// send to lists:
'p[1]' => 1, // example list ID
//'p[1]' => 345, // some additional lists?
// send message(s):
'm[70]' => 100, // example message ID would be 123. 100 means send to 100% of contacts
/* IF SPLIT MAILING */
// if sending a split mailing with "winner" scenario, more than one message can be provided.
// in that case, the sum of all messages should total to under 100%
// (so the rest of contacts can receive a winner message after it is determined)
//'m[453643]' => 10, // some additional messages?
//'m[346146]' => 10, // some additional messages?
// if 'tracklinks' variable is not set to 'all', provide a list of links to track here
// tracked link example
//'linkurl[0]' => 'http://www.google.com/',
//'linkname[0]' => 'Google Inc.',
//'linkmessage[0]' => 123, // found in message with this ID
// more tracked links...
//'linkurl[1]' => 'http://www.yahoo.com/',
//'linkname[1]' => 'Yahoo Inc.',
//'linkmessage[1]' => 345, // found in message with this ID
);
// This section takes the input fields and converts them to the proper format
$query = "";
foreach( $params as $key => $value ) $query .= urlencode($key) . '=' . urlencode($value) . '&';
$query = rtrim($query, '& ');
// This section takes the input data and converts it to the proper format
$data = "";
foreach( $post as $key => $value ) $data .= urlencode($key) . '=' . urlencode($value) . '&';
$data = rtrim($data, '& ');
// clean up the url
$url = rtrim($url, '/ ');
// This sample code uses the CURL library for php to establish a connection,
// submit your request, and show (print out) the response.
if ( !function_exists('curl_init') ) die('CURL not supported. (introduced in PHP 4.0.2)');
// If JSON is used, check if json_decode is present (PHP 5.2.0+)
if ( $params['api_output'] == 'json' && !function_exists('json_decode') ) {
die('JSON not supported. (introduced in PHP 5.2.0)');
}
// define a final API request - GET
$api = $url . '/admin/api.php?' . $query;
$request = curl_init($api); // initiate curl object
curl_setopt($request, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1)
curl_setopt($request, CURLOPT_POSTFIELDS, $data); // use HTTP POST to send form data
//curl_setopt($request, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment if you get no gateway response and are using HTTPS
curl_setopt($request, CURLOPT_FOLLOWLOCATION, true);
$response = (string)curl_exec($request); // execute curl post and store results in $response
// additional options may be required depending upon your server configuration
// you can find documentation on curl options at http://www.php.net/curl_setopt
curl_close($request); // close curl object
if ( !$response ) {
die('Nothing was returned. Do you have a connection to Email Marketing server?');
}
// This line takes the response and breaks it into an array using:
// JSON decoder
//$result = json_decode($response);
// unserializer
$result = unserialize($response);
// XML parser...
// ...
// Result info that is always returned
echo 'Result: ' . ( $result['result_code'] ? 'SUCCESS' : 'FAILED' ) . '<br />';
echo 'Message: ' . $result['result_message'] . '<br />';
// The entire result printed out
echo 'The entire result printed out:<br />';
echo '<pre>';
print_r($result);
echo '</pre>';
// Raw response printed out
echo 'Raw response printed out:<br />';
echo '<pre>';
print_r($response);
echo '</pre>';
// API URL that returned the result
echo 'API URL that returned the result:<br />';
echo $api;
echo '<br /><br />POST params:<br />';
echo '<pre>';
print_r($post);
echo '</pre>';?>
Opmerkingen
0 opmerkingen
Artikel is gesloten voor opmerkingen.