Example Usage of track_site_code
Retrieve site tracking code for account
Description: | Retrieve the site tracking code for this account. This is the same Javascript code snippet found on the Tracking tab of the Settings page in the account. Endpoint: https://{ACCOUNT}.api-us1.com/api/2/track/site/code | ||||
Endpoint: |
https://{ACCOUNT}.api-us1.com/api/2/track/site
|
||||
HTTP method: | GET |
||||
Supported output formats: | json |
||||
Requires authentication: | Yes |
||||
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 track_site_code
call with PHP.
You can replicate the same idea in virtually any other programming language.
This example requires our PHP API wrapper.
Make sure to update the path to the wrapper files in the example code below (if it is not the same).
<?php // Set up an object instance using our PHP API wrapper. define("ACTIVECAMPAIGN_URL", "https://{ACCOUNT}.api-us1.com"); define("ACTIVECAMPAIGN_API_KEY", "{API_KEY}"); require_once("../activecampaign-api-php/includes/ActiveCampaign.class.php"); $ac = new ActiveCampaign(ACTIVECAMPAIGN_URL, ACTIVECAMPAIGN_API_KEY); $ac->version(2); $response = $ac->api("track/site/code"); echo "<pre>"; print_r($response); echo "</pre>"; ?>
Questions? Discuss this API call in our developer forum