<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.offerit.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=OfferitJames</id>
		<title>Offerit - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.offerit.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=OfferitJames"/>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Special:Contributions/OfferitJames"/>
		<updated>2026-06-15T10:14:32Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.5</generator>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Pixels&amp;diff=3473</id>
		<title>Affiliate Custom Pixels</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Pixels&amp;diff=3473"/>
				<updated>2015-08-13T14:29:20Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_for_affiliates_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''''Note: Pixels are not what affiliates use to promote offers.  If you are looking to start promoting your network's offers, see [[Affiliate Linkcodes]].'''''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As an affiliate in an Offerit network, you can set up custom pixels for third-parties when a conversion occurs. This means parties other than the original Network can be notified when a conversion happens.  Custom pixels can be useful if you are promoting offers from Offerit in another network, because the other network also needs to be notified with details of a conversion. In addition, an affiliate who is part of several networks can use custom pixels to send all conversion information to one place, rather than having to log into multiple networks to view stats.&lt;br /&gt;
&lt;br /&gt;
==Conversion Tracking Types==&lt;br /&gt;
There are three different types of custom conversion tracking that affiliates can use:&lt;br /&gt;
*'''Iframe Pixel'''&lt;br /&gt;
*'''Image Pixel'''&lt;br /&gt;
*'''Postback'''&lt;br /&gt;
&lt;br /&gt;
When a Network admin creates an Offer, a conversion type must be chosen to let the network know how to expect the conversion to be communicated to the network.  The type of custom conversion tracking that an affiliate can use depends on the conversion method previously set up by the Network admin:&lt;br /&gt;
&lt;br /&gt;
If an offer has a conversion type of Iframe, affiliates can use any type of custom conversion tracking: Iframe, Image Pixel or (Server) Postback.&amp;lt;br&amp;gt;&lt;br /&gt;
If the offer's conversion type is Image Pixel or Postback, only the Postback method can be used for custom conversion tracking.  &lt;br /&gt;
Offerit automatically filters out the unallowed conversion types for affiliates.&lt;br /&gt;
&lt;br /&gt;
==Conversion Code Examples==&lt;br /&gt;
&lt;br /&gt;
*Iframe Pixel Example:&lt;br /&gt;
 &amp;lt;iframe src=&amp;quot;&amp;lt;conversion url&amp;gt;&amp;quot; height=1 width=1&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Image Pixel Example:&lt;br /&gt;
 &amp;lt;img src=&amp;quot;&amp;lt;conversion url&amp;gt;&amp;quot; height=1 width=1 /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Postback URL Example:&lt;br /&gt;
 &amp;lt;conversion url&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [[Affiliate_Custom_Pixels#Building_your_Conversion_URL| Building your Conversion URL]] for information on creating your &amp;lt;conversion url&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Building your Conversion URL==&lt;br /&gt;
The &amp;lt;conversion url&amp;gt; consists of 3 major parts:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://&amp;lt;conversion_domain&amp;gt;/&amp;lt;conversion_path&amp;gt;?&amp;lt;conversion_variables&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''&amp;lt;conversion_domain&amp;gt;''' - The domain of where you would like the conversion details sent.&lt;br /&gt;
*'''&amp;lt;conversion_path&amp;gt;''' -  The conversion script or file for the pixel. For example, Offerit uses ''signup/process_pixel.php''.&lt;br /&gt;
*'''&amp;lt;conversion_variables&amp;gt;''' - Predefined variables that are available to send with your post. See below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Conversion Variables===&lt;br /&gt;
When configuring the conversion urls for your custom pixels, you can add predefined variables that will be available.&lt;br /&gt;
&lt;br /&gt;
*'''aff_id''' - Your affiliate ID.&lt;br /&gt;
*'''oid''' - The ID of the offer.&lt;br /&gt;
*'''aff_campaign''' - The campaign used.&lt;br /&gt;
*'''aff_approved''' - Your auto-pending status. ''(If set to 1, conversions you referred must be approved before you receive a commission.  If 0, your conversions are automatically approved.)''&lt;br /&gt;
*'''transaction_hash''' - The transaction ID of the conversion.&lt;br /&gt;
*'''commission''' - The commission related to the conversion.&lt;br /&gt;
&lt;br /&gt;
These are added to your conversion code as:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;your variable name&amp;gt;=%%aff_id%%&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Multiple variables are joined with an ''&amp;amp;''.&lt;br /&gt;
If you wanted to capture all of these variables, here is an example you can use to build your conversion url:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://&amp;lt;conversion_domain&amp;gt;/&amp;lt;conversion_path&amp;gt;?aff_id=%%aff_id%%&amp;amp;oid=%%offer_id%%&amp;amp;aff_campaign=%%aff_campaign%%&amp;amp;aff_approved=%%aff_approved%%&amp;amp;transid=%%transaction_hash%%&amp;amp;commission=%%commission%%&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Custom Conversion Variables===&lt;br /&gt;
In addition to the variables already given to you by Offerit, you may want to add your own variables.  When you set up your tracking links, you can add your own custom variables that will be available for your custom pixels.  &lt;br /&gt;
&lt;br /&gt;
For example, this is your '''tracking link''':&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://&amp;lt;/nowiki&amp;gt;&amp;lt;[[Tracking Domain|tracking_domain]]&amp;gt;/track/&amp;lt;[[offeritcode]]&amp;gt;?&amp;lt;custom_var_name&amp;gt;=&amp;lt;custom_var_value&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Continuing with the example, if you set up your tracking link like:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://example.com/track/MS4xLjEuMS4wLjAuMC4wLjAuMC4wLjA?custom_var_name=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can capture the variable data in your conversion pixel by formatting your '''conversion url''' like the following:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://&amp;lt;conversion_domain&amp;gt;/&amp;lt;conversion_path&amp;gt;?custom_var_name=%%custom_var_name%%&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When the conversion occurs, %%custom_var_name%% would be replaced with 12345 (what it was set to in the tracking link) and saved into a variable called custom_var_name.&lt;br /&gt;
&lt;br /&gt;
== Adding Pixels in Offerit ==&lt;br /&gt;
&lt;br /&gt;
Custom Offer Pixels will allow you to set a global pixel in Offerit that will run whenever a conversion happens. Visit this page from the My Account tab, and then Custom Offer Pixels.&lt;br /&gt;
&lt;br /&gt;
[[File:CustomOfferPixels.png|800px]]&lt;br /&gt;
&lt;br /&gt;
To add a pixel, simply select the Offer you would like, what type of pixel you would like, and the code for the pixel.  Click &amp;quot;Save&amp;quot; to save your pixel.  You can then edit your pixel again with the pencil icon, or delete it with the trash icon.  You can make multiple pixels for each offer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
You can also add pixels to be a part of a certain campaign. You can do this easily by using the campaign wizard. First select one of your network's offers, and then select &amp;quot;Campaigns&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
[[File:CampaignCustomTracking.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Note: When adding a pixel for a specific campaign, it will override the global one. This means only the campaign pixel will run. If you set a pixel for all offers and another for a specific offer, both pixels will be sent out.&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3472</id>
		<title>Void Conversions Remotely</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3472"/>
				<updated>2015-07-23T21:06:37Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_misc_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't have to manually void customer transactions in the Customers Admin.  (&lt;br /&gt;
&lt;br /&gt;
When a void is recorded for a transaction the amount of revenue recorded for that transaction will be deducted from your Profit and Loss reports.  Also, your offers will (by default) remove any affiliate payout given to the affiliate for that conversion.&lt;br /&gt;
&lt;br /&gt;
A transaction may only be voided if you can supply the orderid of the transaction.  This means that your system must create a unique orderid when a conversion occurs and the pixel for this conversion must contain the orderid.&lt;br /&gt;
&lt;br /&gt;
==Enabling Void Posts==&lt;br /&gt;
Before voids can be posted to your network, you must first enable this feature in the Misc section of the [[Configuration Admin]] by checking the setting named &amp;quot;Allow Remote Void Posts&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Posting a Void Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to void.&lt;br /&gt;
*'''type''' - (optional) This is an optional parameter for recording voids. (Can be sent as either &amp;quot;void&amp;quot; or you can omit this parameter.)&lt;br /&gt;
*''approved''' - (optional) If you want to void a pending transaction that has been approved, pass in the &amp;quot;orderid&amp;quot; of the pending transaction and set this parameter to &amp;quot;1&amp;quot;.&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://yourdomain.offerit.com/signup/process_void.php?orderid=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Posting a Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to chargeback.&lt;br /&gt;
*'''type''' - (optional) This is a required parameter for recording chargebacks. (This must be set to &amp;quot;chargeback&amp;quot;.)&lt;br /&gt;
*'''cost''' - (optional) This is an optional parameter that can be set to add a transaction fee for processing the chargeback.  By default, this fee will be deducted from the referring affiliate's payout.  For example, If you want the chargeback fee to be $25.00, you would set this parameter to &amp;quot;25.00&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://demo.offerit.com/signup/process_void.php?orderid=12345&amp;amp;type=chargeback&amp;amp;cost=25.00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reversing a Void or Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''reverse''' - This parameter is required to reverse a void/chargeback transaction and must be set to 1.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
To protect your system and prevent fraudulent transactions from being recorded, you can restrict which IP addresses can send posts to process_void.php.  To do this, edit the landing page of the offer you are trying to restrict postbacks for, then enter the comma-separated list of IP addresses in the field named &amp;quot;Secure Landing Page Void IPs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
11.22.33.44,55.66.77.88&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3471</id>
		<title>Void Conversions Remotely</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3471"/>
				<updated>2015-07-23T21:06:14Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_setup_section = true&lt;br /&gt;
| show_misc_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't have to manually void customer transactions in the Customers Admin.  (&lt;br /&gt;
&lt;br /&gt;
When a void is recorded for a transaction the amount of revenue recorded for that transaction will be deducted from your Profit and Loss reports.  Also, your offers will (by default) remove any affiliate payout given to the affiliate for that conversion.&lt;br /&gt;
&lt;br /&gt;
A transaction may only be voided if you can supply the orderid of the transaction.  This means that your system must create a unique orderid when a conversion occurs and the pixel for this conversion must contain the orderid.&lt;br /&gt;
&lt;br /&gt;
==Enabling Void Posts==&lt;br /&gt;
Before voids can be posted to your network, you must first enable this feature in the Misc section of the [[Configuration Admin]] by checking the setting named &amp;quot;Allow Remote Void Posts&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Posting a Void Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to void.&lt;br /&gt;
*'''type''' - (optional) This is an optional parameter for recording voids. (Can be sent as either &amp;quot;void&amp;quot; or you can omit this parameter.)&lt;br /&gt;
*''approved''' - (optional) If you want to void a pending transaction that has been approved, pass in the &amp;quot;orderid&amp;quot; of the pending transaction and set this parameter to &amp;quot;1&amp;quot;.&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://yourdomain.offerit.com/signup/process_void.php?orderid=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Posting a Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to chargeback.&lt;br /&gt;
*'''type''' - (optional) This is a required parameter for recording chargebacks. (This must be set to &amp;quot;chargeback&amp;quot;.)&lt;br /&gt;
*'''cost''' - (optional) This is an optional parameter that can be set to add a transaction fee for processing the chargeback.  By default, this fee will be deducted from the referring affiliate's payout.  For example, If you want the chargeback fee to be $25.00, you would set this parameter to &amp;quot;25.00&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://demo.offerit.com/signup/process_void.php?orderid=12345&amp;amp;type=chargeback&amp;amp;cost=25.00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reversing a Void or Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''reverse''' - This parameter is required to reverse a void/chargeback transaction and must be set to 1.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
To protect your system and prevent fraudulent transactions from being recorded, you can restrict which IP addresses can send posts to process_void.php.  To do this, edit the landing page of the offer you are trying to restrict postbacks for, then enter the comma-separated list of IP addresses in the field named &amp;quot;Secure Landing Page Void IPs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
11.22.33.44,55.66.77.88&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3470</id>
		<title>Template:Offerit Manual</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3470"/>
				<updated>2015-07-23T21:05:20Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;offeritnavbox&amp;quot;&lt;br /&gt;
! &amp;lt;span class=&amp;quot;productname&amp;quot;&amp;gt;[[Offerit|Offerit]]&amp;lt;/span&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_for_affiliates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | For Affiliates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Automatic SubIDs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Stats Dumps|Affiliate Stats Dumps]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Linkcode|Linkcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Pixels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Host and Post]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[ASP Query String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Main Payout Page|Main Payout Page]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliate_area_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
 ! class=&amp;quot;i1&amp;quot; | Offerit Affiliate Area&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Affiliate Area|Offerit Affiliate Area]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
    | [[Affiliate Account Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Account Change Log]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Creatives|Affiliate Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Creatives Search]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Pixels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcode Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Login History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard Key Statistics|Dashboard Key Statistics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard Statistics Summary|Dashboard Statistics Summary]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Payment History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Quick Links]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referring URL Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Remote Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Filters]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Views]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate SubIDs]]&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Email and Notification Settings]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Skins and Languages]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Bonus Rewards]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_setup_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offerit Setup&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Post-Installation Steps|Post-Installation Steps]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking Domain]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit Affiliate Text]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit CSS Colors]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Getting Started Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Quick-Start Guide]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Pixel Builder]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_admin_overview_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Admin Dashboard&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Dashboard|The Admin Dashboard]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_reporting_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Reporting Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Reporting Admin|The Reporting Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack|Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Fraud|Fraud Reports]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_report_breakdowns_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Report Breakdowns&lt;br /&gt;
    |-    &lt;br /&gt;
    | [[Profit and Loss Report|Profit and Loss Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Subscription Report|Subscription Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Transactions Report|Transactions Reports]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Fraud Report|Fraud Report]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Ratios Report|Affiliate Ratios Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Managers Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Surfer Actions Report|Visitor Actions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Tier Commissions Report|Referral Tier Payouts Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Signup Commissions Report|Referral Signup Payouts Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Additional Commissions Report|Additional Commissions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Graphical Affiliate Comparison Report|Graphical Affiliate Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Single Day Comparison Report|The Single Day Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Actual Affiliate Payments|Actual Affiliate Payments Report]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Payments Withheld Report|The Payments Withheld Report]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_offers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers Admin|The Offers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers|Offers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer Setup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking Domain]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission|Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Suppression Lists]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Pixel Builder]]&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Post URLs Usage|Post URL Usage]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URLs|Post URLs in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mobile Landing Pages|Mobile Landing Pages]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer Partner]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Offer User Management|Offer User Management]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer/Landing Page Redirection]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Host and Post]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliates_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Affiliates Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliates Admin|The Affiliates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Managers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Activation|Affiliate Activation]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin-Only Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Override|Affiliate Overrides]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[In House Accounts|In-House Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Add Manual Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Manual Invoice|Manual Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Documents|Affiliate Documents]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Enabled Offers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Affiliate Status]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_advertisers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Advertisers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertisers Admin|The Advertisers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Invoices]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Generate Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Approval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Advertiser Status]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_customers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Customers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Customers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add Customer|Manually Adding a Customer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_commissions_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Commissions Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commissions Admin|The Commissions Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding Commissions|Adding Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission Changes|Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Special Pricing Options|Special Pricing Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payments_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payments Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payments Admin|The Payments Admin]]  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payout Periods]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Dump Formats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payment Dump Entry Numbers |Payment Dump Entry Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Payment Dump Variables|Payment Dump Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Check Functions|Check Functions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payment_methods_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payment Methods&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payza|Payza]] &lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creatives_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Creatives Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creatives Admin|The Creatives Admin]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Duplicating Creative Types|Duplicating Creative Types]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creatives|Add New Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creative Type|Add New Creative Type]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Bulk Import Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative_Templates|Creative Templates]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Code Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creative_types_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Default Creative Types  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Image Banners|Image Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Flash Banners|Flash Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Dynamic Text Banners|Dynamic Text Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Feeds|Feeds]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailers|Mailers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Downloadable Videos|Video Download]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Embedded Videos|Video Embed]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Peels|Page Peels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IM Popups|IM Popups]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Footer Ads|Footer Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Ads|Page Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Overlays|Overlays]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_mailing_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Mailing Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Admin|The Mailing Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Create New Mailer|Create New Mailer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Queue|The Mailing Queue]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailer Template Variables|Mailer Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mass Mailer Template Variables|Mass Mailing Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit_common_mailer_examples|Common Mailer Examples]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_communications_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Communications Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Communications Admin|The Communications Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add News|Add News Item]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Send Message|Sending Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Signup Questions]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_configuration_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Configuration Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Configuration Admin|The Configuration Admin]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Fraud|Fraud Configuration]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Postback URL|Affiliate Signup Postback URL]]&lt;br /&gt;
    |- &lt;br /&gt;
    | [[Edit Affiliate Text]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit CSS Colors]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Log Admin Activity|Log Admin Activity]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IP Address Filtering|IP Address Filtering]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Postback|Affiliate Postback]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Analytics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Throttling]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_skins_and_templates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Skins and Templates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins and Templates Admin|The Skins and Templates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins|Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty Plugins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Templates|Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Site Templates|Site Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Language Skins|Language Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Language Files]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit custom errors.php|custom_errors.php]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Join Page Variables|Join Page Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URL Variables|Post URL Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Customer Usernames &amp;amp; Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Username Recommendations|Username Recommendations]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Password Retrieval|Password Retrieval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Post-Biller Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Geo-Target Join Options|Geo-Target Join Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Random Usernames and Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty print array]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Support Template|Affiliate Support Template]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding a Verification Image|Adding a Verification Image]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Custom Commission and Campaign Selection Pages|Custom Commission and Campaign Selection Pages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Output An Affiliate's Last Paid Date|Output An Affiliate's Last Paid Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Join Page Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Approval/Upgrade/Denial Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CSS Theme Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_api_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | API&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API|API]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate|Add Affiliate]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate Sale|Add Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Offer|Add Offer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Approve Transaction|Approve Transaction]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Admin Get Creatives|Admin Get Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Creative Types|Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Decode Offeritcode|Decode Offeritcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Deny Transaction|Deny Transaction]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Disable Affiliate Landing Page|Disable Affiliate Landing Page]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Edit Affiliate Sale|Edit Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Enable Affiliate Landing Page|Enable Affiliate Landing Page]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Creative Categories|Creative Categories]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Stats|Get Affiliate Stats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Allowed Affiliates|Get Allowed Affiliates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Landing Page Details|Get Landing Page Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Offer Details|Get Offer Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Offer List|Get Offer List]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Profit Loss Report|Get Profit Loss Report]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Affiliate Get Traffic Tags|Affiliate Get Traffic Tags]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Tracking Codes|Get Affiliate Tracking Codes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Sales|Get Affiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Subaffiliate Sales|Get Subaffiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Details|Get Customer Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Instant Upgrade String|Get Customer Instant Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Package Upgrade String|Get Customer Package Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Upsell String|Get Customer Upsell String]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Details|List Affiliate Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Subaffiliates|List Affiliate Subaffiliates]]&lt;br /&gt;
    |- &lt;br /&gt;
    | [[Offerit API Ping|Ping]]&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- |- &lt;br /&gt;
    | [[Offerit API Set Affiliate Defaults|Set Affiliate Defaults]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Admin Settings|Set Affiliate Admin Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Customs|Set Affiliate Customs]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Status|Set Affiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Information|Set Affiliate Information]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Settings|Set Affiliate Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Customer Details|Set Customer Details]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Subaffiliate Status|Set SubAffiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[API Bulk Import Creatives|Bulk Import Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Member Details|Set Member Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Record Affiliate Click|Record Affiliate Click]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_misc_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Misc.&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Freeform Date|Freeform Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Rewards Admin|Rewards Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Logos]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Void Conversions Remotely]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_troubleshooting_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Troubleshooting&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Common Errors|Common Errors]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Fix Graphs|Fix Graphs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Auto Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[AutoLogin Cookie]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Expired License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zend License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CAPTCHA]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zip Files in Internet Explorer]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_extras_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | offerit Extras&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offeritid]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Remote Affiliate Authentication|Remote Affiliate Authentication]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Shopping Cart Sales|Shopping Cart Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Moving Landing Pages, Customers' Area, and Galleries]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Areas]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Extended Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Code Wordpress Plugin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Error_message_display]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
|}&amp;lt;includeonly&amp;gt;[[Category:Offerit]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3469</id>
		<title>Void Conversions Remotely</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3469"/>
				<updated>2015-07-23T21:02:43Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Posting a Void Transaction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't have to manually void customer transactions in the Customers Admin.  (&lt;br /&gt;
&lt;br /&gt;
When a void is recorded for a transaction the amount of revenue recorded for that transaction will be deducted from your Profit and Loss reports.  Also, your offers will (by default) remove any affiliate payout given to the affiliate for that conversion.&lt;br /&gt;
&lt;br /&gt;
A transaction may only be voided if you can supply the orderid of the transaction.  This means that your system must create a unique orderid when a conversion occurs and the pixel for this conversion must contain the orderid.&lt;br /&gt;
&lt;br /&gt;
==Enabling Void Posts==&lt;br /&gt;
Before voids can be posted to your network, you must first enable this feature in the Misc section of the [[Configuration Admin]] by checking the setting named &amp;quot;Allow Remote Void Posts&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Posting a Void Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to void.&lt;br /&gt;
*'''type''' - (optional) This is an optional parameter for recording voids. (Can be sent as either &amp;quot;void&amp;quot; or you can omit this parameter.)&lt;br /&gt;
*''approved''' - (optional) If you want to void a pending transaction that has been approved, pass in the &amp;quot;orderid&amp;quot; of the pending transaction and set this parameter to &amp;quot;1&amp;quot;.&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://yourdomain.offerit.com/signup/process_void.php?orderid=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Posting a Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to chargeback.&lt;br /&gt;
*'''type''' - (optional) This is a required parameter for recording chargebacks. (This must be set to &amp;quot;chargeback&amp;quot;.)&lt;br /&gt;
*'''cost''' - (optional) This is an optional parameter that can be set to add a transaction fee for processing the chargeback.  By default, this fee will be deducted from the referring affiliate's payout.  For example, If you want the chargeback fee to be $25.00, you would set this parameter to &amp;quot;25.00&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://demo.offerit.com/signup/process_void.php?orderid=12345&amp;amp;type=chargeback&amp;amp;cost=25.00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reversing a Void or Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''reverse''' - This parameter is required to reverse a void/chargeback transaction and must be set to 1.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
To protect your system and prevent fraudulent transactions from being recorded, you can restrict which IP addresses can send posts to process_void.php.  To do this, edit the landing page of the offer you are trying to restrict postbacks for, then enter the comma-separated list of IP addresses in the field named &amp;quot;Secure Landing Page Void IPs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
11.22.33.44,55.66.77.88&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_List_Affiliate_Subaffiliates&amp;diff=3466</id>
		<title>Offerit API List Affiliate Subaffiliates</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_List_Affiliate_Subaffiliates&amp;diff=3466"/>
				<updated>2015-05-06T20:19:58Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function lists the sub affiliates under a specific affiliate. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''loginid''' - The affiliate ID to get sub affiliates from&lt;br /&gt;
* '''start''' - (optional) The index to start on&lt;br /&gt;
* '''count''' - (optional) The amount of records to get ''(25 results will be returned by default)''&lt;br /&gt;
* '''order''' - (optional) The order of the records&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
      'loginid' =&amp;gt; 2,&lt;br /&gt;
      'start' =&amp;gt; 1,&lt;br /&gt;
      'count' =&amp;gt; 10,&lt;br /&gt;
      'order' =&amp;gt; 'subaff'&lt;br /&gt;
   );&lt;br /&gt;
$result = $client-&amp;gt;call('list_aff_subaffs', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Array&lt;br /&gt;
(&lt;br /&gt;
    [0] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [additional_trackingid] =&amp;gt; 2&lt;br /&gt;
            [subaff] =&amp;gt; asdfsadf&lt;br /&gt;
            [subaff2] =&amp;gt; asdf123423&lt;br /&gt;
            [subaff3] =&amp;gt;&lt;br /&gt;
            [subaff4] =&amp;gt;&lt;br /&gt;
            [subaff5] =&amp;gt;&lt;br /&gt;
            [loginid] =&amp;gt; 2&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
    [1] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [additional_trackingid] =&amp;gt; 3&lt;br /&gt;
            [subaff] =&amp;gt; tester&lt;br /&gt;
            [subaff2] =&amp;gt; hello&lt;br /&gt;
            [subaff3] =&amp;gt; adam&lt;br /&gt;
            [subaff4] =&amp;gt;&lt;br /&gt;
            [subaff5] =&amp;gt;&lt;br /&gt;
            [loginid] =&amp;gt; 2&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
    [2] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [additional_trackingid] =&amp;gt; 1&lt;br /&gt;
            [subaff] =&amp;gt; tmmadam&lt;br /&gt;
            [subaff2] =&amp;gt; adamtest&lt;br /&gt;
            [subaff3] =&amp;gt;&lt;br /&gt;
            [subaff4] =&amp;gt;&lt;br /&gt;
            [subaff5] =&amp;gt;&lt;br /&gt;
            [loginid] =&amp;gt; 2&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3465</id>
		<title>Offerit API Add Affiliate Sale</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3465"/>
				<updated>2015-03-16T16:54:49Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
This function allows you to add a sale for a specific affiliate. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''orderid''' - OPTIONAL: Your unique orderid that will be associated with the Offerit customer record (This is a value you determine on your end and pass it in)&lt;br /&gt;
* '''amount''' - The amount spent on the offer by the customer (optional)&lt;br /&gt;
* '''offeritcode''' - This can be either the encoded, un-encoded, or shortname version of the OfferIt Code. You can take this code out of the URL during a conversion and just pass it along.  This will tell Offerit which offer, landing page, commission, and affiliate this traffic is for.&lt;br /&gt;
* '''customer''' - OPTIONAL: The name of the array used to pass in customer data with the following elements:&lt;br /&gt;
** '''username''' - The customer's User Name&lt;br /&gt;
** '''subscriptionid''' - The customer ID used to identify this subscription for any future transactions&lt;br /&gt;
** '''password''' - The customer's Password&lt;br /&gt;
** '''firstname''' - The customer's First name&lt;br /&gt;
** '''lastname''' - The customer's Last name&lt;br /&gt;
** '''address1''' - The customer's Address&lt;br /&gt;
** '''address2''' - The customer's Address 2&lt;br /&gt;
** '''zip''' - The customer's Zip Code&lt;br /&gt;
** '''city''' - The customer's City&lt;br /&gt;
** '''country''' - The customer's Country&lt;br /&gt;
** '''state''' - The customer's State&lt;br /&gt;
** '''ip''' - strtolong value of the customers IP&lt;br /&gt;
** '''shipping_firstname''' - The customer's Shipping First name&lt;br /&gt;
** '''shipping_lastname''' - The customer's Shipping Last name&lt;br /&gt;
** '''shipping_address1''' - The customer's Shipping Address&lt;br /&gt;
** '''shipping_address2''' - The customer's Shipping Address 2&lt;br /&gt;
** '''shipping_zip''' - The customer's Shipping Zip Code&lt;br /&gt;
** '''shipping_city''' - The customer's Shipping City&lt;br /&gt;
** '''shipping_country''' - The customer's Shipping  Country&lt;br /&gt;
** '''shipping_state''' - The customer's Shipping State&lt;br /&gt;
** '''phone''' - The customer's Phone Number&lt;br /&gt;
** '''email''' - The customer's Email Address&lt;br /&gt;
** '''mailok''' - Can Offerit send the customer an Email?&lt;br /&gt;
** '''custom1''' - Store custom data about the customer&lt;br /&gt;
** '''custom2''' - Store custom data about the customer&lt;br /&gt;
** '''custom3''' - Store custom data about the customer&lt;br /&gt;
** '''custom4''' - Store custom data about the customer&lt;br /&gt;
** '''custom5''' - Store custom data about the customer&lt;br /&gt;
** '''refurl''' - The referring url of the customer&lt;br /&gt;
&amp;lt;!-- ** '''expires''' - The string representation of a time to set for a customer's expiration date --&amp;gt;&lt;br /&gt;
* '''currency''' - OPTIONAL: The three-letter abbreviation of the currency type&lt;br /&gt;
* '''time''' - OPTIONAL: The time the sale occurred as a string representation of a date&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
    'orderid'=&amp;gt;'ABCDEFGHI',&lt;br /&gt;
    'amount'=&amp;gt;1,&lt;br /&gt;
    'offeritcode'=&amp;gt;'Mi4yLjEuMS4wLjAuMC4wLjAuMC4wLjA',&lt;br /&gt;
    'customer'=&amp;gt;Array(&lt;br /&gt;
        'firstname'=&amp;gt;'Ben',&lt;br /&gt;
        'lastname'=&amp;gt;'Offerit'&lt;br /&gt;
    )&lt;br /&gt;
);&lt;br /&gt;
   &lt;br /&gt;
$result = $client-&amp;gt;call('set_aff_sales_add', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On success:&lt;br /&gt;
  array(3) {&lt;br /&gt;
    [&amp;quot;message&amp;quot;]=&amp;gt;string(11) &amp;quot;Add Success&amp;quot;&lt;br /&gt;
    [&amp;quot;customerid&amp;quot;]=&amp;gt;int(124)&lt;br /&gt;
    [&amp;quot;orderid&amp;quot;]=&amp;gt;string(9) &amp;quot;ABCDEFGHI&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
On error:&lt;br /&gt;
      error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3460</id>
		<title>Void Conversions Remotely</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3460"/>
				<updated>2014-08-21T16:35:51Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't have to manually void customer transactions in the Customers Admin.  (&lt;br /&gt;
&lt;br /&gt;
When a void is recorded for a transaction the amount of revenue recorded for that transaction will be deducted from your Profit and Loss reports.  Also, your offers will (by default) remove any affiliate payout given to the affiliate for that conversion.&lt;br /&gt;
&lt;br /&gt;
A transaction may only be voided if you can supply the orderid of the transaction.  This means that your system must create a unique orderid when a conversion occurs and the pixel for this conversion must contain the orderid.&lt;br /&gt;
&lt;br /&gt;
==Enabling Void Posts==&lt;br /&gt;
Before voids can be posted to your network, you must first enable this feature in the Misc section of the [[Configuration Admin]] by checking the setting named &amp;quot;Allow Remote Void Posts&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Posting a Void Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to void.&lt;br /&gt;
*'''type''' - (optional) This is an optional parameter for recording voids. (Can be sent as either &amp;quot;void&amp;quot; or you can omit this parameter.)&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://yourdomain.offerit.com/signup/process_void.php?orderid=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Posting a Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to chargeback.&lt;br /&gt;
*'''type''' - (optional) This is a required parameter for recording chargebacks. (This must be set to &amp;quot;chargeback&amp;quot;.)&lt;br /&gt;
*'''cost''' - (optional) This is an optional parameter that can be set to add a transaction fee for processing the chargeback.  By default, this fee will be deducted from the referring affiliate's payout.  For example, If you want the chargeback fee to be $25.00, you would set this parameter to &amp;quot;25.00&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://demo.offerit.com/signup/process_void.php?orderid=12345&amp;amp;type=chargeback&amp;amp;cost=25.00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reversing a Void or Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''reverse''' - This parameter is required to reverse a void/chargeback transaction and must be set to 1.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
To protect your system and prevent fraudulent transactions from being recorded, you can restrict which IP addresses can send posts to process_void.php.  To do this, edit the landing page of the offer you are trying to restrict postbacks for, then enter the comma-separated list of IP addresses in the field named &amp;quot;Secure Landing Page Void IPs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
11.22.33.44,55.66.77.88&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3459</id>
		<title>Void Conversions Remotely</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Void_Conversions_Remotely&amp;diff=3459"/>
				<updated>2014-08-21T16:29:06Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: Created page with &amp;quot;You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can void any conversion recorded remotely by sending a post to the process_void.php script.  This will allow you to automate voiding transactions in your system so you don't have to manually void customer transactions in the Customers Admin.  (&lt;br /&gt;
&lt;br /&gt;
When a void is recorded for a transaction the amount of revenue recorded for that transaction will be deducted from your Profit and Loss reports.  Also, your offers will (by default) remove any affiliate payout given to the affiliate for that conversion.&lt;br /&gt;
&lt;br /&gt;
A transaction may only be voided if you can supply the orderid of the transaction.  This means that your system must create a unique orderid when a conversion occurs and the pixel for this conversion must contain the orderid.&lt;br /&gt;
&lt;br /&gt;
==Posting a Void Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to void.&lt;br /&gt;
*'''type''' - (optional) This is an optional parameter for recording voids. (Can be sent as either &amp;quot;void&amp;quot; or you can omit this parameter.)&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://yourdomain.offerit.com/signup/process_void.php?orderid=12345&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Posting a Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''orderid''' - The orderid of the conversion/transaction you are trying to chargeback.&lt;br /&gt;
*'''type''' - (optional) This is a required parameter for recording chargebacks. (This must be set to &amp;quot;chargeback&amp;quot;.)&lt;br /&gt;
*'''cost''' - (optional) This is an optional parameter that can be set to add a transaction fee for processing the chargeback.  By default, this fee will be deducted from the referring affiliate's payout.  For example, If you want the chargeback fee to be $25.00, you would set this parameter to &amp;quot;25.00&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://demo.offerit.com/signup/process_void.php?orderid=12345&amp;amp;type=chargeback&amp;amp;cost=25.00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reversing a Void or Chargeback Transaction==&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
*'''reverse''' - This parameter is required to reverse a void/chargeback transaction and must be set to 1.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
To protect your system and prevent fraudulent transactions from being recorded, you can restrict which IP addresses can send posts to process_void.php.  To do this, edit the landing page of the offer you are trying to restrict postbacks for, then enter the comma-separated list of IP addresses in the field named &amp;quot;Secure Landing Page Void IPs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
11.22.33.44,55.66.77.88&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3455</id>
		<title>Offerit API Add Affiliate Sale</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3455"/>
				<updated>2014-07-10T22:46:04Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
This function allows you to add a sale for a specific affiliate. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''orderid''' - OPTIONAL: Your unique orderid that will be associated with the Offerit customer record (This is a value you determine on your end and pass it in)&lt;br /&gt;
* '''amount''' - The amount spent on the offer by the customer (optional)&lt;br /&gt;
* '''offeritcode''' - This can be either the encoded, un-encoded, or shortname version of the OfferIt Code. You can take this code out of the URL during a conversion and just pass it along.  This will tell Offerit which offer, landing page, commission, and affiliate this traffic is for.&lt;br /&gt;
* '''customer''' - OPTIONAL: The name of the array used to pass in customer data with the following elements:&lt;br /&gt;
** '''username''' - The customer's User Name&lt;br /&gt;
** '''subscriptionid''' - The customer ID used to identify this subscription for any future transactions&lt;br /&gt;
** '''password''' - The customer's Password&lt;br /&gt;
** '''firstname''' - The customer's First name&lt;br /&gt;
** '''lastname''' - The customer's Last name&lt;br /&gt;
** '''address1''' - The customer's Address&lt;br /&gt;
** '''address2''' - The customer's Address 2&lt;br /&gt;
** '''zip''' - The customer's Zip Code&lt;br /&gt;
** '''city''' - The customer's City&lt;br /&gt;
** '''country''' - The customer's Country&lt;br /&gt;
** '''state''' - The customer's State&lt;br /&gt;
** '''ip''' - strtolong value of the customers IP&lt;br /&gt;
** '''shipping_firstname''' - The customer's Shipping First name&lt;br /&gt;
** '''shipping_lastname''' - The customer's Shipping Last name&lt;br /&gt;
** '''shipping_address1''' - The customer's Shipping Address&lt;br /&gt;
** '''shipping_address2''' - The customer's Shipping Address 2&lt;br /&gt;
** '''shipping_zip''' - The customer's Shipping Zip Code&lt;br /&gt;
** '''shipping_city''' - The customer's Shipping City&lt;br /&gt;
** '''shipping_country''' - The customer's Shipping  Country&lt;br /&gt;
** '''shipping_state''' - The customer's Shipping State&lt;br /&gt;
** '''phone''' - The customer's Phone Number&lt;br /&gt;
** '''email''' - The customer's Email Address&lt;br /&gt;
** '''mailok''' - Can Offerit send the customer an Email?&lt;br /&gt;
** '''custom1''' - Store custom data about the customer&lt;br /&gt;
** '''custom2''' - Store custom data about the customer&lt;br /&gt;
** '''custom3''' - Store custom data about the customer&lt;br /&gt;
** '''custom4''' - Store custom data about the customer&lt;br /&gt;
** '''custom5''' - Store custom data about the customer&lt;br /&gt;
&amp;lt;!-- ** '''expires''' - The string representation of a time to set for a customer's expiration date --&amp;gt;&lt;br /&gt;
* '''currency''' - OPTIONAL: The three-letter abbreviation of the currency type&lt;br /&gt;
* '''time''' - OPTIONAL: The time the sale occurred as a string representation of a date&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
    'orderid'=&amp;gt;'ABCDEFGHI',&lt;br /&gt;
    'amount'=&amp;gt;1,&lt;br /&gt;
    'offeritcode'=&amp;gt;'Mi4yLjEuMS4wLjAuMC4wLjAuMC4wLjA',&lt;br /&gt;
    'customer'=&amp;gt;Array(&lt;br /&gt;
        'firstname'=&amp;gt;'Ben',&lt;br /&gt;
        'lastname'=&amp;gt;'Offerit'&lt;br /&gt;
    )&lt;br /&gt;
);&lt;br /&gt;
   &lt;br /&gt;
$result = $client-&amp;gt;call('set_aff_sales_add', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On success:&lt;br /&gt;
  array(3) {&lt;br /&gt;
    [&amp;quot;message&amp;quot;]=&amp;gt;string(11) &amp;quot;Add Success&amp;quot;&lt;br /&gt;
    [&amp;quot;customerid&amp;quot;]=&amp;gt;int(124)&lt;br /&gt;
    [&amp;quot;orderid&amp;quot;]=&amp;gt;string(9) &amp;quot;ABCDEFGHI&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
On error:&lt;br /&gt;
      error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3454</id>
		<title>Offerit API Add Affiliate Sale</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Affiliate_Sale&amp;diff=3454"/>
				<updated>2014-07-10T21:35:16Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
This function allows you to add a sale for a specific affiliate. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''orderid''' - OPTIONAL: Your unique orderid that will be associated with the Offerit customer record (This is a value you determine on your end and pass it in)&lt;br /&gt;
* '''amount''' - The amount spent on the offer by the customer (optional)&lt;br /&gt;
* '''offeritcode''' - This can be either the encoded, un-encoded, or shortname version of the OfferIt Code. You can take this code out of the URL during a conversion and just pass it along.  This will tell Offerit which offer, landing page, commission, and affiliate this traffic is for.&lt;br /&gt;
* '''customer''' - OPTIONAL: The name of the array used to pass in customer data with the following elements:&lt;br /&gt;
** '''username''' - The customer's User Name&lt;br /&gt;
** '''subscriptionid''' - The customer ID used to identify this subscription for any future transactions&lt;br /&gt;
** '''password''' - The customer's Password&lt;br /&gt;
** '''firstname''' - The customer's First name&lt;br /&gt;
** '''lastname''' - The customer's Last name&lt;br /&gt;
** '''address1''' - The customer's Address&lt;br /&gt;
** '''address2''' - The customer's Address 2&lt;br /&gt;
** '''zip''' - The customer's Zip Code&lt;br /&gt;
** '''city''' - The customer's City&lt;br /&gt;
** '''country''' - The customer's Country&lt;br /&gt;
** '''state''' - The customer's State&lt;br /&gt;
** '''ip''' - strtolong value of the customers IP&lt;br /&gt;
** '''shipping_firstname''' - The customer's Shipping First name&lt;br /&gt;
** '''shipping_lastname''' - The customer's Shipping Last name&lt;br /&gt;
** '''shipping_address1''' - The customer's Shipping Address&lt;br /&gt;
** '''shipping_address2''' - The customer's Shipping Address 2&lt;br /&gt;
** '''shipping_zip''' - The customer's Shipping Zip Code&lt;br /&gt;
** '''shipping_city''' - The customer's Shipping City&lt;br /&gt;
** '''shipping_country''' - The customer's Shipping  Country&lt;br /&gt;
** '''shipping_state''' - The customer's Shipping State&lt;br /&gt;
** '''phone''' - The customer's Phone Number&lt;br /&gt;
** '''email''' - The customer's Email Address&lt;br /&gt;
** '''mailok''' - Can Offerit send the customer an Email?&lt;br /&gt;
** '''custom1''' - Store custom data about the customer&lt;br /&gt;
** '''custom2''' - Store custom data about the customer&lt;br /&gt;
** '''custom3''' - Store custom data about the customer&lt;br /&gt;
** '''custom4''' - Store custom data about the customer&lt;br /&gt;
** '''custom5''' - Store custom data about the customer&lt;br /&gt;
&amp;lt;!-- ** '''expires''' - The string representation of a time to set for a customer's expiration date --&amp;gt;&lt;br /&gt;
* '''currency''' - OPTIONAL: The three-letter abbreviation of the currency type&lt;br /&gt;
* '''time''' - OPTIONAL: The time the sale occurred as a unix timestamp or mysql date format&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
    'orderid'=&amp;gt;'ABCDEFGHI',&lt;br /&gt;
    'amount'=&amp;gt;1,&lt;br /&gt;
    'offeritcode'=&amp;gt;'Mi4yLjEuMS4wLjAuMC4wLjAuMC4wLjA',&lt;br /&gt;
    'customer'=&amp;gt;Array(&lt;br /&gt;
        'firstname'=&amp;gt;'Ben',&lt;br /&gt;
        'lastname'=&amp;gt;'Offerit'&lt;br /&gt;
    )&lt;br /&gt;
);&lt;br /&gt;
   &lt;br /&gt;
$result = $client-&amp;gt;call('set_aff_sales_add', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On success:&lt;br /&gt;
  array(3) {&lt;br /&gt;
    [&amp;quot;message&amp;quot;]=&amp;gt;string(11) &amp;quot;Add Success&amp;quot;&lt;br /&gt;
    [&amp;quot;customerid&amp;quot;]=&amp;gt;int(124)&lt;br /&gt;
    [&amp;quot;orderid&amp;quot;]=&amp;gt;string(9) &amp;quot;ABCDEFGHI&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
On error:&lt;br /&gt;
      error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Mobile_Landing_Page&amp;diff=3422</id>
		<title>Mobile Landing Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Mobile_Landing_Page&amp;diff=3422"/>
				<updated>2014-06-05T17:36:46Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: Created page with &amp;quot;{{Offerit Manual | show_offers_admin_section = true }}  You can set up a mobile landing page for an offer to automatically redirect mobile traffic to this landing page.  Offerit ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_offers_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
You can set up a mobile landing page for an offer to automatically redirect mobile traffic to this landing page.  Offerit will determine if a visitor is mobile based on the user agent of their browser.&lt;br /&gt;
&lt;br /&gt;
=== Adding a Mobile Landing Page ===&lt;br /&gt;
&lt;br /&gt;
To set up a mobile landing page, go to the [[Offerit_Offers_Admin|Offers Admin]], and click the &amp;quot;Add&amp;quot; button underneath &amp;quot;Landing Pages&amp;quot;.  Type in the name of the mobile landing page and click &amp;quot;OK&amp;quot;.  When configuring the different landing page options, make sure to select &amp;quot;Mobile&amp;quot; as the Landing Page Type.  Once you have set up the other landing page options, click &amp;quot;Save Changes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Configuring a Mobile Landing Page Redirect ===&lt;br /&gt;
&lt;br /&gt;
Once you have created a Mobile Landing Page, you can set up your offer to redirect mobile traffic to this landing page.  To do this, edit the offer you have set up a mobile landing page for, and click &amp;quot;Advanced Settings&amp;quot; to expand the advanced offer settings.  Select the mobile landing page in the drop-down menu next to the field labeled &amp;quot;Mobile Landing Page&amp;quot; and click &amp;quot;Save Changes&amp;quot; to finalize the setup.&lt;br /&gt;
&lt;br /&gt;
Now, mobile traffic for this offer should automatically get redirected to this landing page.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3419</id>
		<title>Template:Offerit Manual</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3419"/>
				<updated>2014-05-30T16:32:50Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;offeritnavbox&amp;quot;&lt;br /&gt;
! &amp;lt;span class=&amp;quot;productname&amp;quot;&amp;gt;[[Offerit|Offerit]]&amp;lt;/span&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_for_affiliates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | For Affiliates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Automatic SubIDs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Stats Dumps|Affiliate Stats Dumps]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Linkcode|Linkcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Pixels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Host and Post]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[ASP Query String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Main Payout Page|Main Payout Page]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliate_area_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
 ! class=&amp;quot;i1&amp;quot; | Offerit Affiliate Area&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Affiliate Area|Offerit Affiliate Area]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
    | [[Affiliate Account Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Account Change Log]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Creatives|Affiliate Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Creatives Search]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Pixels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcode Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Login History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard Key Statistics|Dashboard Key Statistics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Dashboard Statistics Summary|Dashboard Statistics Summary]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Payment History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Quick Links]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referring URL Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Remote Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Filters]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Views]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate SubIDs]]&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Email and Notification Settings]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Skins and Languages]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Bonus Rewards]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_setup_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offerit Setup&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Post-Installation Steps|Post-Installation Steps]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking Domain]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit Affiliate Text]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit CSS Colors]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Getting Started Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Quick-Start Guide]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Pixel Builder]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_admin_overview_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Admin Dashboard&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Dashboard|The Admin Dashboard]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_reporting_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Reporting Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Reporting Admin|The Reporting Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack|Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Fraud|Fraud Reports]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_report_breakdowns_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Report Breakdowns&lt;br /&gt;
    |-    &lt;br /&gt;
    | [[Profit and Loss Report|Profit and Loss Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Subscription Report|Subscription Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Transactions Report|Transactions Reports]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Fraud Report|Fraud Report]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Ratios Report|Affiliate Ratios Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Managers Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Surfer Actions Report|Visitor Actions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Tier Commissions Report|Referral Tier Payouts Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Signup Commissions Report|Referral Signup Payouts Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Additional Commissions Report|Additional Commissions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Graphical Affiliate Comparison Report|Graphical Affiliate Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Single Day Comparison Report|The Single Day Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Actual Affiliate Payments|Actual Affiliate Payments Report]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Payments Withheld Report|The Payments Withheld Report]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_offers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers Admin|The Offers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers|Offers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer Setup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking Domain]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission|Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Suppression Lists]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Pixel Builder]]&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Post URLs Usage|Post URL Usage]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URLs|Post URLs in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mobile Landing Pages|Mobile Landing Pages]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer Partner]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Offer User Management|Offer User Management]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer/Landing Page Redirection]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Host and Post]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliates_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Affiliates Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliates Admin|The Affiliates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Managers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Activation|Affiliate Activation]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin-Only Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Override|Affiliate Overrides]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[In House Accounts|In-House Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Add Manual Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Manual Invoice|Manual Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Documents|Affiliate Documents]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Enabled Offers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Affiliate Status]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_advertisers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Advertisers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertisers Admin|The Advertisers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Invoices]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Generate Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Approval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Advertiser Status]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_customers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Customers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Customers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add Customer|Manually Adding a Customer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_commissions_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Commissions Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commissions Admin|The Commissions Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding Commissions|Adding Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission Changes|Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Special Pricing Options|Special Pricing Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payments_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payments Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payments Admin|The Payments Admin]]  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payout Periods]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Dump Formats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payment Dump Entry Numbers |Payment Dump Entry Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Payment Dump Variables|Payment Dump Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Check Functions|Check Functions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payment_methods_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payment Methods&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payza|Payza]] &lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creatives_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Creatives Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creatives Admin|The Creatives Admin]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Duplicating Creative Types|Duplicating Creative Types]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creatives|Add New Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creative Type|Add New Creative Type]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Bulk Import Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative_Templates|Creative Templates]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Code Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creative_types_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Default Creative Types  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Image Banners|Image Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Flash Banners|Flash Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Dynamic Text Banners|Dynamic Text Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Feeds|Feeds]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailers|Mailers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Downloadable Videos|Video Download]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Embedded Videos|Video Embed]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Peels|Page Peels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IM Popups|IM Popups]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Footer Ads|Footer Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Ads|Page Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Overlays|Overlays]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_mailing_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Mailing Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Admin|The Mailing Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Create New Mailer|Create New Mailer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Queue|The Mailing Queue]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailer Template Variables|Mailer Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mass Mailer Template Variables|Mass Mailing Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit_common_mailer_examples|Common Mailer Examples]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_communications_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Communications Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Communications Admin|The Communications Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add News|Add News Item]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Send Message|Sending Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Signup Questions]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_configuration_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Configuration Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Configuration Admin|The Configuration Admin]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Fraud|Fraud Configuration]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Postback URL|Affiliate Signup Postback URL]]&lt;br /&gt;
    |- &lt;br /&gt;
    | [[Edit Affiliate Text]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit CSS Colors]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Log Admin Activity|Log Admin Activity]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IP Address Filtering|IP Address Filtering]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Postback|Affiliate Postback]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Analytics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Throttling]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_skins_and_templates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Skins and Templates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins and Templates Admin|The Skins and Templates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins|Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty Plugins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Templates|Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Site Templates|Site Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Language Skins|Language Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Language Files]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit custom errors.php|custom_errors.php]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Join Page Variables|Join Page Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URL Variables|Post URL Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Customer Usernames &amp;amp; Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Username Recommendations|Username Recommendations]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Password Retrieval|Password Retrieval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Post-Biller Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Geo-Target Join Options|Geo-Target Join Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Random Usernames and Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty print array]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Support Template|Affiliate Support Template]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding a Verification Image|Adding a Verification Image]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Custom Commission and Campaign Selection Pages|Custom Commission and Campaign Selection Pages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Output An Affiliate's Last Paid Date|Output An Affiliate's Last Paid Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Join Page Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Approval/Upgrade/Denial Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CSS Theme Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_api_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | API&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API|API]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate|Add Affiliate]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate Sale|Add Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Offer|Add Offer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Approve Transaction|Approve Transaction]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Admin Get Creatives|Admin Get Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Creative Types|Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Decode Offeritcode|Decode Offeritcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Deny Transaction|Deny Transaction]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Disable Affiliate Landing Page|Disable Affiliate Landing Page]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Edit Affiliate Sale|Edit Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Enable Affiliate Landing Page|Enable Affiliate Landing Page]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Creative Categories|Creative Categories]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Stats|Get Affiliate Stats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Allowed Affiliates|Get Allowed Affiliates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Landing Page Details|Get Landing Page Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Offer Details|Get Offer Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Offer List|Get Offer List]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Profit Loss Report|Get Profit Loss Report]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Affiliate Get Traffic Tags|Affiliate Get Traffic Tags]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Tracking Codes|Get Affiliate Tracking Codes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Sales|Get Affiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Subaffiliate Sales|Get Subaffiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Details|Get Customer Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Instant Upgrade String|Get Customer Instant Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Package Upgrade String|Get Customer Package Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Upsell String|Get Customer Upsell String]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Details|List Affiliate Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Subaffiliates|List Affiliate Subaffiliates]]&lt;br /&gt;
    |- &lt;br /&gt;
    | [[Offerit API Ping|Ping]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Send Email|Send Email]]&lt;br /&gt;
    &amp;lt;!-- |- &lt;br /&gt;
    | [[Offerit API Set Affiliate Defaults|Set Affiliate Defaults]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Admin Settings|Set Affiliate Admin Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Customs|Set Affiliate Customs]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Status|Set Affiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Information|Set Affiliate Information]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Settings|Set Affiliate Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Customer Details|Set Customer Details]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Subaffiliate Status|Set SubAffiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[API Bulk Import Creatives|Bulk Import Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Member Details|Set Member Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Record Affiliate Click|Record Affiliate Click]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_misc_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Misc.&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Freeform Date|Freeform Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Rewards Admin|Rewards Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Tracking in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_troubleshooting_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Troubleshooting&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Common Errors|Common Errors]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Fix Graphs|Fix Graphs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Auto Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[AutoLogin Cookie]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Expired License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zend License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CAPTCHA]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zip Files in Internet Explorer]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_extras_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | offerit Extras&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offeritid]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Remote Affiliate Authentication|Remote Affiliate Authentication]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Shopping Cart Sales|Shopping Cart Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Moving Landing Pages, Customers' Area, and Galleries]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Areas]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Extended Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Code Wordpress Plugin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Error_message_display]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
|}&amp;lt;includeonly&amp;gt;[[Category:Offerit]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Admin_host_and_post&amp;diff=3418</id>
		<title>Admin host and post</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Admin_host_and_post&amp;diff=3418"/>
				<updated>2014-05-30T16:25:31Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: Redirected page to Admin Host and Post&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Admin Host and Post]]&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Admin_Host_and_Post&amp;diff=3417</id>
		<title>Admin Host and Post</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Admin_Host_and_Post&amp;diff=3417"/>
				<updated>2014-05-30T16:24:44Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: Created page with &amp;quot;{{Offerit Manual | show_offers_admin_section = true }}  == Introduction == Offerit now supports affiliate host and post! This system allows affiliates the flexibility of hosting ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_offers_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Offerit now supports affiliate host and post! This system allows affiliates the flexibility of hosting their own landing page or lead generation forms while still having their traffic recorded in Offerit. For more information on how to use this system from the affiliate perspective please visit the [[Affiliate_Host_and_Post|wiki page]]&lt;br /&gt;
&lt;br /&gt;
== Affiliate Approval ==&lt;br /&gt;
The Host and Post system can be enabled on a per affiliate level. To turn this on, navigate to the Affiliates Admin in Offerit and select &amp;quot;Edit Admin-Only Affiliate Settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:Screenshotfrom20140529_163047.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;From there you will want to check &amp;quot;Allow Host and Post&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:AffHostAndPost.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Postback Security ==&lt;br /&gt;
In order to prevent against potential fraud, there is a new set of Allowed postback ips for the Host and Post system. You can find this list when adding or editing a landing page where you see &amp;quot;Secure Landing Page Host and Post IPs&amp;quot;. When enabling an affiliate for host and post you will want to obtain their server postback ips and add them to the appropriate landing pages. Keep in mind that the landing page conversion type will need to be postback for this system to work correctly.&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:Screenshotfrom20140529_163806.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
If you have any questions regarding setting up host and post or would like to see some additions feel free to put in a [https://support.offerit.com support ticket] and we will gladly assist you in whatever way possible.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3407</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3407"/>
				<updated>2014-05-16T17:11:48Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
&lt;br /&gt;
[[File:bulk_import_dropdown.png|200px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|808px|Zip Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|1000px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:Dump_bulk_import.png&amp;diff=3406</id>
		<title>File:Dump bulk import.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:Dump_bulk_import.png&amp;diff=3406"/>
				<updated>2014-05-16T17:10:14Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:Dump bulk import.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3405</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3405"/>
				<updated>2014-05-16T16:46:50Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
&lt;br /&gt;
[[File:bulk_import_dropdown.png|200px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|808px|Zip Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|500px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:Dump_bulk_import.png&amp;diff=3404</id>
		<title>File:Dump bulk import.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:Dump_bulk_import.png&amp;diff=3404"/>
				<updated>2014-05-16T16:40:33Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3403</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3403"/>
				<updated>2014-05-16T16:40:04Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
&lt;br /&gt;
[[File:bulk_import_dropdown.png|200px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|808px|Zip Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|586px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3402</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3402"/>
				<updated>2014-05-16T16:39:31Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
[[File:bulk_import_dropdown.png|200px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|808px|Zip Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|586px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:Zip_bulk_import.png&amp;diff=3401</id>
		<title>File:Zip bulk import.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:Zip_bulk_import.png&amp;diff=3401"/>
				<updated>2014-05-16T16:37:27Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3400</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3400"/>
				<updated>2014-05-16T16:34:45Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
[[File:bulk_import_dropdown.png|202px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|500px|Zip Bulk Import]]&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|500px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:Bulk_import_dropdown.png&amp;diff=3399</id>
		<title>File:Bulk import dropdown.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:Bulk_import_dropdown.png&amp;diff=3399"/>
				<updated>2014-05-16T16:33:23Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:Bulk import dropdown.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:Bulk_import_dropdown.png&amp;diff=3398</id>
		<title>File:Bulk import dropdown.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:Bulk_import_dropdown.png&amp;diff=3398"/>
				<updated>2014-05-16T16:30:57Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3397</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3397"/>
				<updated>2014-05-16T16:30:32Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Offerit Manual&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
[[File:bulk_import_dropdown.png|1000px|Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
[[File:zip_bulk_import.png|500px|Zip Bulk Import]]&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a zip file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
[[File:dump_bulk_import.png|500px|Text Dump Bulk Import]]&lt;br /&gt;
&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3396</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3396"/>
				<updated>2014-05-16T16:26:03Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
&amp;lt;!-- &amp;lt;INSERT BULK IMPORT DROPDOWN IMAGE&amp;gt; --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&amp;lt;INSERT ZIP BULK IMPORT IMAGE&amp;gt;--&amp;gt;&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;INSERT Dump BULK IMPORT IMAGE&amp;gt; --&amp;gt;&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3395</id>
		<title>Bulk Import Creatives</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Creatives&amp;diff=3395"/>
				<updated>2014-05-16T16:25:13Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: Created page with &amp;quot;The Bulk Importer in the Creatives Admin is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either up...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Bulk Importer in the [[Creatives Admin]] is a powerful tool you can use to quickly upload creatives for your affiliates.  Depending on the type of Creative, you can either upload a zip file or paste a dump file of creatives you want to upload.&lt;br /&gt;
&lt;br /&gt;
To access the bulk importer, navigate to the [[Creatives Admin]], click the Actions dropdown menu next to the Creative you want to import, then click &amp;quot;Bulk Import&amp;quot; in the dropdown menu.&lt;br /&gt;
&amp;lt;!-- &amp;lt;INSERT BULK IMPORT DROPDOWN IMAGE&amp;gt; --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No matter which type of bulk import is used, you will be prompted with the following fields to control how you want to publish the creatives you are importing:&lt;br /&gt;
*'''Enabled On''' :  Choose which offer you would like the uploaded creatives to be enabled on.  (Affiliates will only be able to get tracking links for an offer if the creative is enabled for that offer.)&lt;br /&gt;
*'''Publish Date''' : This is the date on which affiliates will be able to access the imported creatives in the Affiliate Area.&lt;br /&gt;
*'''Default Group''' : Choose a group to automatically assign to the uploaded creatives so that you can easily organize them in the system.&lt;br /&gt;
&lt;br /&gt;
==Zip Bulk Import==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&amp;lt;INSERT ZIP BULK IMPORT IMAGE&amp;gt;--&amp;gt;&lt;br /&gt;
Depending on the creative type, you will be prompted to select a zip file from your computer or paste a dump into a text area.  Once you have selected a file, all you need to do is change the remaining import settings mentioned above and click the &amp;quot;Add&amp;quot; button at the bottom of the form.&lt;br /&gt;
&lt;br /&gt;
==Text Dump Bulk Import==&lt;br /&gt;
Some Creative types will require you to paste a text dump in a text area containing the formatted creative data.  You will need to set up the &amp;quot;Header Data&amp;quot; section to match the order of the fields in your dump.  For instance, if the first field in your dump is a name describing the creative, you would select &amp;quot;Name&amp;quot; in the first dropdown option.  If one of the fields in your dump is not applicable to the Bulk Import, you can select &amp;quot;Blank&amp;quot; in the dropdown option, and this field will be ignored.&lt;br /&gt;
&lt;br /&gt;
===Separator and Line Ending===&lt;br /&gt;
Based on how your dump is formatted, you may also need to configure the Separator and Line Ending fields.  The Line Ending field should be used if each dump entry does not start with a new line.  If this is the case, type the character(s) that is used to distinguish different dump entries.  Similar to the Line Ending field, the Separator field should be used to choose which character(s) separate individual fields in your dump.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;INSERT Dump BULK IMPORT IMAGE&amp;gt; --&amp;gt;&lt;br /&gt;
===Ignore Duplicates===&lt;br /&gt;
Each creative type has different fields associated with it such as a name, url, description, etc.   Fields labeled as unique can only have one creative uploaded with that value.  For example, the name field is unique for the Mailing Ads creative, so two Mailing Ads with the same name cannot be imported.  The Ignore Duplicates option allows you to import creatives into the system without checking to see if it is unique.  This may be useful if the naming convention of your creatives was not unique, or you wanted to reupload creatives to a different creative group or offer.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:PayoutPeriods.png&amp;diff=3380</id>
		<title>File:PayoutPeriods.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:PayoutPeriods.png&amp;diff=3380"/>
				<updated>2014-05-09T17:21:48Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:PayoutPeriods.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:AddNewTrackingDomain.png&amp;diff=3379</id>
		<title>File:AddNewTrackingDomain.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:AddNewTrackingDomain.png&amp;diff=3379"/>
				<updated>2014-05-01T20:37:43Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:AddNewTrackingDomain.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Commission_Changes&amp;diff=3376</id>
		<title>Commission Changes</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Commission_Changes&amp;diff=3376"/>
				<updated>2014-04-17T16:15:57Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Precedence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_offers_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
With the commission changes icon, you can add special changes to an offer's commission. To create commission changes for an offer, click the &amp;quot;Commission Changes&amp;quot; icon in the actions column for the corresponding offer in the [[Offers Admin]]. &lt;br /&gt;
&lt;br /&gt;
[[File:CommissionChangesIcon.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Adding a Commission Change ==&lt;br /&gt;
To add a commission change, click the &amp;quot;Add Change&amp;quot; link or &amp;quot;Add Commission Change&amp;quot; tab on the sidebar. First, you will need to fill in the Username or Login ID of the Affiliate account(s) you wish to set up a commission change for. If this field is blank, set to Default, or set to ALL, the Commission Change will be applied to all affiliates. Then, choose the Country(s) you want the change to effect. To select more than one country, click a country while holding the ''Ctrl'' key. For faster selecting, you can click while holding the ''Shift'' key, which will select all countries between your newly clicked country and your previously clicked country.  Lastly, select a Change Type.&lt;br /&gt;
&lt;br /&gt;
[[File:AddCommissionChange.png|700px]]&lt;br /&gt;
&lt;br /&gt;
*'''[[Commission_Changes#Standard_Change|Standard Change]]''' - This is used for any normal change.&lt;br /&gt;
*'''[[Commission_Changes#Disable_Commission|Disable Commission]]''' - This is used to turn off the commission for these settings.&lt;br /&gt;
*'''[[Commission_Changes#Temporary_Change|Temporary Change]]''' - This is used to set up a temporary commission change, based on a time period.&lt;br /&gt;
*'''[[Commission_Changes#Tiered_Commission|Tiered Commission]]''' - This is used to set up tiers to increase commission based on the number of signups from this affiliate.&lt;br /&gt;
*'''[[Commission_Changes#Recurring_Change|Recurring Change]]''' - This is used to set up a temporary commission that occurs more than once.&lt;br /&gt;
&lt;br /&gt;
Click ''Add Commission Change'' to move on to the next step: creating the change. Depending upon the type of change you chose, your options will differ. The Default Commission will always be listed here for reference.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Standard Change ===&lt;br /&gt;
&lt;br /&gt;
This is used for any normal change.&lt;br /&gt;
&lt;br /&gt;
*'''View''' - Payout Amount for Page View&lt;br /&gt;
*'''Unique ''' - Payout Amount for Unique Visitor&lt;br /&gt;
*'''Qual''' - Payout Amount for Qualified Hits&lt;br /&gt;
*'''$ Sale''' - Payout Amount for Customer Sale&lt;br /&gt;
*'''$ Continuity''' - Payout Amount for Customer Continuity&lt;br /&gt;
*'''% Sale ''' - Payout Percentage for Customer Sale&lt;br /&gt;
*'''% Continuity ''' - Payout Percentage for Customer Continuity&lt;br /&gt;
*'''CPM''' - Payout Amount for 1,000 Impressions&lt;br /&gt;
&lt;br /&gt;
Click ''Save'' in the actions column to create your change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Disable Commission ===&lt;br /&gt;
&lt;br /&gt;
This automatically creates a commission change where all values are 0, and since the change will be added to the top of your change list, it sets the entire commission to 0, disabling any commission.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Temporary Change ===&lt;br /&gt;
&lt;br /&gt;
This is used to set up a temporary commission change, based on a time period.&lt;br /&gt;
&lt;br /&gt;
*'''Start Time''' - This is the time that the new payout change will take effect. The field is a [[Offerit Freeform Date|Freeform Date]]. If you place a date in the past, it will automatically be set to Now.&lt;br /&gt;
*'''End Time''' - This is the time that the new payout change will expire. The field is [[Offerit Freeform Date|Freeform Date]]. If you place a date in the past, it will automatically be set to Tomorrow.&lt;br /&gt;
&lt;br /&gt;
*'''View''' - Payout Amount for Page View&lt;br /&gt;
*'''Unique ''' - Payout Amount for Unique Visitor&lt;br /&gt;
*'''Qual''' - Payout Amount for Qualified Hits&lt;br /&gt;
*'''$ Sale''' - Payout Amount for Customer Sale&lt;br /&gt;
*'''$ Continuity''' - Payout Amount for Customer Continuity&lt;br /&gt;
*'''% Sale ''' - Payout Percentage for Customer Sale&lt;br /&gt;
*'''% Continuity ''' - Payout Percentage for Customer Continuity&lt;br /&gt;
*'''CPM''' - Payout Amount for 1,000 Impressions&lt;br /&gt;
&lt;br /&gt;
Click ''Save'' in the actions column to create your change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Tiered Commission ===&lt;br /&gt;
&lt;br /&gt;
This is used to set up tiers to increase commission based on the number of signups from this affiliate.&lt;br /&gt;
&lt;br /&gt;
*'''Tier''' - This is the number of sales that must be reached to move to this tier in the commissions.&lt;br /&gt;
&lt;br /&gt;
*'''View''' - Payout Amount for Page View&lt;br /&gt;
*'''Unique ''' - Payout Amount for Unique Visitor&lt;br /&gt;
*'''Qual''' - Payout Amount for Qualified Hits&lt;br /&gt;
*'''$ Sale''' - Payout Amount for Customer Sale&lt;br /&gt;
*'''$ Continuity''' - Payout Amount for Customer Continuity&lt;br /&gt;
*'''% Sale ''' - Payout Percentage for Customer Sale&lt;br /&gt;
*'''% Continuity ''' - Payout Percentage for Customer Continuity&lt;br /&gt;
*'''CPM''' - Payout Amount for 1,000 Impressions&lt;br /&gt;
&lt;br /&gt;
*'''Reset''' - This is the setting when to bump the Affiliate back to the previous. This setback can be done on commission, period end, monthly, or never.&lt;br /&gt;
*'''Raise''' - This is the setting for when the pay raise goes into effect. Next Sale implements the change immediately. Next day implements the changes the day after the level is reached. Period changes the commission for the whole period after the level is reached.&lt;br /&gt;
&lt;br /&gt;
Use the &amp;quot;Start on Sale&amp;quot; box to determine when you want the default [[Ct#Commission|commission]] to change for [[Ct#Affiliate|affiliates]]. For example, you can set it to change commission amounts after they refer ''100'' customers by inputting &amp;quot;100&amp;quot; in the &amp;quot;Start on Sale&amp;quot; box and configuring the rest of the corresponding commission amounts. Click ''Add'' at the end of a row to create your tier. You will then be allowed to create another tier. Repeat until you have all the tiers you desire. The change will be automatically saved, simply go back to the commission changes list when you have finished adding tiers.&lt;br /&gt;
&lt;br /&gt;
=== Recurring Change ===&lt;br /&gt;
&lt;br /&gt;
This is used to set up a temporary commission which occurs more than once.&lt;br /&gt;
&lt;br /&gt;
*'''Start Time''' - This is the time that the new payout change will take effect. The field is a [[Offerit Freeform Date|Freeform Date]]. If you place a date in the past, it will automatically be set to Now.&lt;br /&gt;
*'''End Time''' - This is the time that the new payout change will expire. The field is [[Offerit Freeform Date|Freeform Date]]. If you place a date in the past, it will automatically be set to Tomorrow.&lt;br /&gt;
*'''Recurring Type''' - This is the type of recurring payout change to be used.&lt;br /&gt;
**''Daily''&lt;br /&gt;
**''Weekly''&lt;br /&gt;
**''Monthly'' &lt;br /&gt;
*'''Frequency''' - This is the frequency of the recurring payout change. Choose from any hour of the day.&lt;br /&gt;
&lt;br /&gt;
*'''View''' - Payout Amount for Page View&lt;br /&gt;
*'''Unique ''' - Payout Amount for Unique Visitor&lt;br /&gt;
*'''Qual''' - Payout Amount for Qualified Hits&lt;br /&gt;
*'''$ Sale''' - Payout Amount for Customer Sale&lt;br /&gt;
*'''$ Continuity''' - Payout Amount for Customer Continuity&lt;br /&gt;
*'''% Sale ''' - Payout Percentage for Customer Sale&lt;br /&gt;
*'''% Continuity ''' - Payout Percentage for Customer Continuity&lt;br /&gt;
*'''CPM''' - Payout Amount for 1,000 Impressions&lt;br /&gt;
&lt;br /&gt;
Click ''Save'' in the actions column to create your change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Editing a Commission Change ==&lt;br /&gt;
&lt;br /&gt;
When you click on the Commission Changes icon, you will be brought to a list of all commission changes for that offer.  Each unique change is listen in a row, with the default commission listed as a reference. Use the pencil icon to edit the commission change.&lt;br /&gt;
&lt;br /&gt;
[[File:CommissionChangeExample.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Editing a commission change will not immediately affect an [[Ct#Affiliate|affiliate]]'s payment for the [[Ct#Commission|commission]] to which you are applying the change. [[Offerit]] will simply set the original commission change to end, while creating a new commission change with the edited details in its place. For every edit that has been made to a [[Ct#Commission|commission]], a new commission change will be created in its place with updated details. This allows [[Offerit]] to keep an accurate historical track of commission change records. To delete a change, use the trash can icon, but be warned that there is no way to undelete a deleted commission change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Priority ==&lt;br /&gt;
&lt;br /&gt;
You can control the priority of your commission changes applied to an [[Ct#Affiliate|affiliate]]. To change the order of your commission changes, click the the &amp;quot;Commission Changes&amp;quot; icon next to the offer you would like to edit.&lt;br /&gt;
&lt;br /&gt;
On the next page, you can use the Up and Down arrows to change the order of your commission changes. The commission change with the highest priority (first in the list of your changes) will always be the change that is applied to your affiliate's commission -- this allows you to offer special commissions to certain affiliates by giving a special commission change higher priority than the standard commission change(s).&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:CommissionChangesIcon.png&amp;diff=3375</id>
		<title>File:CommissionChangesIcon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:CommissionChangesIcon.png&amp;diff=3375"/>
				<updated>2014-04-17T16:05:20Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:CommissionChangesIcon.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:CommissionChangesIcon.png&amp;diff=3374</id>
		<title>File:CommissionChangesIcon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:CommissionChangesIcon.png&amp;diff=3374"/>
				<updated>2014-04-17T16:04:21Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:CommissionChangesIcon.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:CommissionChangeExample.png&amp;diff=3373</id>
		<title>File:CommissionChangeExample.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:CommissionChangeExample.png&amp;diff=3373"/>
				<updated>2014-04-17T15:45:02Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:CommissionChangeExample.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:AddCommissionChange.png&amp;diff=3372</id>
		<title>File:AddCommissionChange.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:AddCommissionChange.png&amp;diff=3372"/>
				<updated>2014-04-17T15:16:53Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: uploaded a new version of &amp;amp;quot;File:AddCommissionChange.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_List_Affiliate_Details&amp;diff=3371</id>
		<title>Offerit API List Affiliate Details</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_List_Affiliate_Details&amp;diff=3371"/>
				<updated>2014-04-16T21:52:31Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function allows you to get all of the details for an affiliate. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''loginid''' - The affiliate ID to get information from&lt;br /&gt;
* '''username''' - The username of the affiliate to get information from&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
      'loginid' =&amp;gt; 3, // The affiliate ID to get information from&lt;br /&gt;
   );&lt;br /&gt;
$result = $client-&amp;gt;call('list_aff_details', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Array&lt;br /&gt;
(&lt;br /&gt;
    [0] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [loginid] =&amp;gt; 1&lt;br /&gt;
            [username] =&amp;gt; testuser&lt;br /&gt;
            [password] =&amp;gt; ...&lt;br /&gt;
            [deleted] =&amp;gt; 0&lt;br /&gt;
            [type] =&amp;gt; 225&lt;br /&gt;
            [skinid] =&amp;gt; 1002&lt;br /&gt;
            [payvia_type_id] =&amp;gt; 1&lt;br /&gt;
            [status] =&amp;gt; 0&lt;br /&gt;
            [pass_hash] =&amp;gt; 18954290295166ff2f35f103.06333282&lt;br /&gt;
            [join_date] =&amp;gt; 1322668691&lt;br /&gt;
            [inhouse] =&amp;gt; 0&lt;br /&gt;
            [api_key] =&amp;gt; d0a09cd1fbd4fdf0297e18e23e0aa206&lt;br /&gt;
            [offeritllcid] =&amp;gt; 0&lt;br /&gt;
            [origin] =&amp;gt; 0&lt;br /&gt;
            [language] =&amp;gt; en&lt;br /&gt;
            [rss_pass_code] =&amp;gt; 5971ba1d0bab0519fdaca322c938c4d0&lt;br /&gt;
            [payout_period_id] =&amp;gt; 0&lt;br /&gt;
            [tos] =&amp;gt; 0&lt;br /&gt;
            [firstname] =&amp;gt; Staging1&lt;br /&gt;
            [lastname] =&amp;gt; Offerit&lt;br /&gt;
            [email] =&amp;gt; test@email.com&lt;br /&gt;
            [date_posted] =&amp;gt; 1322668691&lt;br /&gt;
            [join_ip] =&amp;gt; 75.99.182.234&lt;br /&gt;
            [last_login] =&amp;gt; 1365524166&lt;br /&gt;
            [last_login_ip] =&amp;gt; 1264826090&lt;br /&gt;
            [reviewed] =&amp;gt; 0&lt;br /&gt;
            [minimum_payout] =&amp;gt; 50&lt;br /&gt;
            [bonus] =&amp;gt; 1849&lt;br /&gt;
            [bonus_used] =&amp;gt; 0&lt;br /&gt;
            [verify] =&amp;gt;&lt;br /&gt;
            [reason] =&amp;gt;&lt;br /&gt;
            [unencoded] =&amp;gt; 1&lt;br /&gt;
            [startpage] =&amp;gt; admin_overview.php&lt;br /&gt;
            [rep_baseline] =&amp;gt; 0&lt;br /&gt;
            [company] =&amp;gt; Offerit&lt;br /&gt;
            [url] =&amp;gt; http://offerit.com&lt;br /&gt;
            [tel] =&amp;gt;&lt;br /&gt;
            [icq] =&amp;gt; 123123123321&lt;br /&gt;
            [aim] =&amp;gt; noaim&lt;br /&gt;
            [msn] =&amp;gt;&lt;br /&gt;
            [address1] =&amp;gt; 123 Offerit&lt;br /&gt;
            [address2] =&amp;gt;&lt;br /&gt;
            [city] =&amp;gt; Morganville&lt;br /&gt;
            [state] =&amp;gt; NJ&lt;br /&gt;
            [country] =&amp;gt; US&lt;br /&gt;
            [zip_code] =&amp;gt; 12345&lt;br /&gt;
            [tax_id_or_ssn] =&amp;gt;&lt;br /&gt;
            [invoicer] =&amp;gt; 0&lt;br /&gt;
            [req_docs] =&amp;gt; 0&lt;br /&gt;
            [w9] =&amp;gt; 0&lt;br /&gt;
            [mailok] =&amp;gt; 0&lt;br /&gt;
            [new_notification] =&amp;gt; 0&lt;br /&gt;
            [latest_news] =&amp;gt; 0&lt;br /&gt;
            [default_campaign] =&amp;gt; 0&lt;br /&gt;
            [default_program] =&amp;gt; 0&lt;br /&gt;
            [default_offer] =&amp;gt; 80&lt;br /&gt;
            [pv_instant] =&amp;gt; 0&lt;br /&gt;
            [payout_approval] =&amp;gt; 0&lt;br /&gt;
            [access_preset] =&amp;gt; 0&lt;br /&gt;
            [custom1] =&amp;gt; 0&lt;br /&gt;
            [custom2] =&amp;gt; 0&lt;br /&gt;
            [custom3] =&amp;gt; 0&lt;br /&gt;
            [custom4] =&amp;gt; 0&lt;br /&gt;
            [custom5] =&amp;gt; 0&lt;br /&gt;
            [avatar_ext] =&amp;gt;&lt;br /&gt;
            [remote_access] =&amp;gt; 1&lt;br /&gt;
            [dob] =&amp;gt; 0000-00-00&lt;br /&gt;
            [auto_pending] =&amp;gt; 0&lt;br /&gt;
            [emailer] =&amp;gt; 0&lt;br /&gt;
            [skype] =&amp;gt;&lt;br /&gt;
            [pay_acctrep_on_revenue] =&amp;gt; 0&lt;br /&gt;
        )&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3370</id>
		<title>Bulk Import Offers</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3370"/>
				<updated>2014-04-16T16:53:14Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Offer Settings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;With the Bulk Offer importer, you can upload your offers in bulk from an XML or CSV dump.  The Bulk Importer is located in the [[Offers Admin]], from the tab labeled &amp;quot;Bulk Import Offers&amp;quot; on the left.  &lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
Offerit makes it easy!  Import your offers in four simple steps:&lt;br /&gt;
#[[Bulk Import Offers#Bulk Importer|Paste your dump into the Offer Bulk Import text box (CSV or XML)]]&lt;br /&gt;
#[[Bulk Import Offers#Import Field Setup|Tell Offerit which variables you are using in your dump]]&lt;br /&gt;
#Save your dump for future needs or records&lt;br /&gt;
#Upload your offers!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bulk Importer ==&lt;br /&gt;
&lt;br /&gt;
There are many options and features to help you set up your dump with the highest accuracy possible.  The Bulk importer box is where you will paste the CSV or XML dump for Offerit to import.  Once you have your dump pasted, use the pencil icon to edit the Import Fields to match your dump. Your current import fields are shown just above the dump text box.&lt;br /&gt;
&lt;br /&gt;
[[Image:OfferBulkImport.png]]&lt;br /&gt;
&lt;br /&gt;
=== Import Options ===&lt;br /&gt;
*'''Import Type''' - either CSV or XML.&lt;br /&gt;
*'''URL''' - If you have your dump available somewhere on the web, you can enter the url here '''instead''' of pasting your dump into the text box.&lt;br /&gt;
*'''Separator''' - ''(for CSV only)'' The characters you want to use to separate the variables in your dump.&lt;br /&gt;
*'''Line Ending''' - ''(for CSV only)'' Character that denotes the end of a line.&lt;br /&gt;
*'''Start Date''' - The start date for these offers. Can be a [[Offerit Freeform Date]].&lt;br /&gt;
*'''Default Group''' - The group you would like to put these offers in.&lt;br /&gt;
*'''Ignore Duplicate Offers''' - If you have a duplicate offer in the dump, you can choose to ignore it or create a second offer.&lt;br /&gt;
*'''Append to Landing Page URL''' - Append additional variables to the end of the landing page URL.&lt;br /&gt;
&lt;br /&gt;
The current variables in your dump are displayed on top of the large text box.  To change these, use the Pencil icon.&lt;br /&gt;
&lt;br /&gt;
=== Action Icons ===&lt;br /&gt;
[[Image:DumpIcons.png]]&lt;br /&gt;
*'''Pencil''' - Edit the current dump. You will be taken to the [[Bulk Import Offers#Import Field Setup|dump variable editor]].&lt;br /&gt;
*'''Save Dump Settings''' - Save your current dump settings. Any admin can access saved dump settings later using the Load Dump settings button.&lt;br /&gt;
*'''Load Dump Settings''' - Load previously saved dump settings.&lt;br /&gt;
&lt;br /&gt;
== Import Field Setup ==&lt;br /&gt;
&lt;br /&gt;
After you have your dump set up, you will need to tell Offerit about the information you are importing.  The box titled ''&amp;quot;Available Fields&amp;quot;'' are all the possible variables that Offerit can take. The section titled ''&amp;quot;Import Fields&amp;quot;'' are all the fields you are about to import into Offerit from your dump.  &lt;br /&gt;
To set this up, drag variables from the ''&amp;quot;Available Fields&amp;quot;'' to the ''&amp;quot;Import Fields&amp;quot;'' section, in the correct order for your dump.&lt;br /&gt;
&lt;br /&gt;
Check our '''[[Bulk Import Offers#Available Fields List|Available Fields List]]''' to make sure you are using the correct field for each variable in your dump.&lt;br /&gt;
&lt;br /&gt;
[[Image:DragImport.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Import Example === &lt;br /&gt;
&lt;br /&gt;
Let's say you have this dump:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;offers&amp;gt;&lt;br /&gt;
	&amp;lt;offer&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;My Offer Name&amp;lt;/title&amp;gt;&lt;br /&gt;
		&amp;lt;url&amp;gt;http://myoffer.com&amp;lt;/url&amp;gt;&lt;br /&gt;
		&amp;lt;platform&amp;gt;Web&amp;lt;/platform&amp;gt;&lt;br /&gt;
		&amp;lt;start_date&amp;gt;2013-07-25&amp;lt;/start_date&amp;gt;&lt;br /&gt;
			&amp;lt;descriptions&amp;gt;&lt;br /&gt;
				&amp;lt;main_desc&amp;gt;Description of my offer&amp;lt;/main_desc&amp;gt;&lt;br /&gt;
				&amp;lt;internal_desc&amp;gt;Internal Desc. of my offer&amp;lt;/internal_desc&amp;gt;&lt;br /&gt;
			&amp;lt;/descriptions&amp;gt;&lt;br /&gt;
		&amp;lt;private&amp;gt;''&amp;lt;/private&amp;gt;&lt;br /&gt;
		&amp;lt;language&amp;gt;English&amp;lt;/language&amp;gt;&lt;br /&gt;
		&amp;lt;payout&amp;gt;&lt;br /&gt;
			&amp;lt;type&amp;gt;cpm&amp;lt;/type&amp;gt;&lt;br /&gt;
			&amp;lt;amount&amp;gt;1.00 USD&amp;lt;/amount&amp;gt;&lt;br /&gt;
		&amp;lt;/payout&amp;gt;&lt;br /&gt;
		&amp;lt;requestable&amp;gt;Yes&amp;lt;/requestable&amp;gt;&lt;br /&gt;
		&amp;lt;countries&amp;gt;USA,GB&amp;lt;/countries&amp;gt;&lt;br /&gt;
	&amp;lt;/offer&amp;gt;&lt;br /&gt;
&amp;lt;/offers&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Offerit will collapse the XML data into the main tag. This means that the dump above will be converted automatically into:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;offers&amp;gt;&lt;br /&gt;
	&amp;lt;offer&amp;gt;&lt;br /&gt;
		&amp;lt;title&amp;gt;My Offer Name&amp;lt;/title&amp;gt;&lt;br /&gt;
		&amp;lt;url&amp;gt;http://myoffer.com&amp;lt;/url&amp;gt;&lt;br /&gt;
		&amp;lt;platform&amp;gt;Web&amp;lt;/platform&amp;gt;&lt;br /&gt;
		&amp;lt;start_date&amp;gt;2013-07-25&amp;lt;/start_date&amp;gt;&lt;br /&gt;
		&amp;lt;main_desc&amp;gt;Description of my offer&amp;lt;/main_desc&amp;gt;&lt;br /&gt;
		&amp;lt;internal_desc&amp;gt;Internal Desc. of my offer&amp;lt;/internal_desc&amp;gt;&lt;br /&gt;
		&amp;lt;private&amp;gt;''&amp;lt;/private&amp;gt;&lt;br /&gt;
		&amp;lt;language&amp;gt;English&amp;lt;/language&amp;gt;&lt;br /&gt;
		&amp;lt;type&amp;gt;cpm&amp;lt;/type&amp;gt;&lt;br /&gt;
		&amp;lt;amount&amp;gt;1.00 USD&amp;lt;/amount&amp;gt;&lt;br /&gt;
		&amp;lt;requestable&amp;gt;Yes&amp;lt;/requestable&amp;gt;&lt;br /&gt;
		&amp;lt;countries&amp;gt;USA,GB&amp;lt;/countries&amp;gt;&lt;br /&gt;
	&amp;lt;/offer&amp;gt;&lt;br /&gt;
&amp;lt;/offers&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, you will need to tell Offerit the fields you are using.  Within the importer, you would set up your import field list as:&lt;br /&gt;
&lt;br /&gt;
[[Image:BulkOfferImport.png]]&lt;br /&gt;
&lt;br /&gt;
The numbers correspond to the order they appear in your dump, and are ordered horizontally.  ''Ignore Field'' is used for variables not listed in the ''Available Fields'' list.&lt;br /&gt;
&lt;br /&gt;
== Available Fields List ==&lt;br /&gt;
&lt;br /&gt;
Offerit has an extensive list of variables you can include on your dump.  Check here to see what you need to set your variables to so Offerit can read them correctly (0 for off, 1 for on, etc.) If you wish to use something not listed here, you can select &amp;quot;Ignore Field&amp;quot; and collect the information from that variable yourself.&lt;br /&gt;
&lt;br /&gt;
*'''Ignore Field''' - Use this if you have a field in your dump that Offerit does not support; a placeholder.&lt;br /&gt;
&lt;br /&gt;
=== Offer Settings ===&lt;br /&gt;
*'''Offer Expire Date''' - The date this offer will expire, no longer available for promotion.&lt;br /&gt;
*'''Offer Group ID''' - The ID of the Offerit group for this offer.&lt;br /&gt;
*'''Offer Name''' - The name of your offer.&lt;br /&gt;
*'''Offer Start Date''' - The date your offer will first become available for promotion.&lt;br /&gt;
*'''Offer Thumbnail''' - A thumbnail picture representing your offer.&lt;br /&gt;
*'''Marketing Type''' - Allowed marketing types for this offer: list of IDs.&lt;br /&gt;
*'''Category''' - This can be either a list of ids for categories already created, or a list of category names.  (New categories will be created if they have not yet been added.)&lt;br /&gt;
*'''Private''' - If set to '1', Offerit will mark offer as private. Private offers must have affiliates manually enrolled to view offer. Defaults to '0'.&lt;br /&gt;
*'''Hidden''' - If set to '1', Offerit will hide the offer from affiliates. Defaults to '0'.&lt;br /&gt;
*'''Hide Continuity Stats''' -  If set to '1', Offerit will NOT display continuities on the affiliate's stats pages for this offer. This option ''will not work'' if this offer pays affiliates on continuities. Defaults to '0'.&lt;br /&gt;
*'''Hide Conversion Stats''' -  If set to '1', Offerit will NOT display conversions on the affiliate's stats pages for this offer. This option ''will not work'' if this offer pays affiliates on conversions. Defaults to '0'.&lt;br /&gt;
*'''Expire Offer Redirect''' - Offer ID to redirect to when this offer expires.&lt;br /&gt;
*'''Expire URL''' - The URL for the Redirect on expire.&lt;br /&gt;
&lt;br /&gt;
=== Advertiser Settings ===&lt;br /&gt;
*'''Advertiser Cost %''' - The percentage of the sale to pay the Advertiser of this offer.&lt;br /&gt;
*'''Advertiser Cost Flat''' - The flat rate to pay the Advertiser of this offer.&lt;br /&gt;
*'''Advertiser Cost Type'''-   Income for the advertiser of this offer. Possible values are:&lt;br /&gt;
**'''conversion''' - Income will be calculated per conversion. Used with the ''Advertiser Cost Flat'' income option.&lt;br /&gt;
**'''sale''' - Income will be calculated per conversion. Used with the ''Advertiser Cost %'' income option.&lt;br /&gt;
**'''singleimpression''' - Income will be calculated per impression. Used with the ''Advertiser Cost Flat'' income option.&lt;br /&gt;
**'''click''' - Income will be calculated per click. Used with the ''Advertiser Cost Flat'' income option.&lt;br /&gt;
**'''impression''' - Income will be calculated per 1,000 impressions. Used with the ''Advertiser Cost Flat'' income option.&lt;br /&gt;
*'''Advertiser ID''' - The ID of the Advertiser for this Offer.&lt;br /&gt;
*'''Pending''' - The Status of this offer. Only used with advertisers. Possible values are:&lt;br /&gt;
**'''0''' - Active&lt;br /&gt;
**'''1''' - Pending&lt;br /&gt;
**'''2''' - Denied&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Commission Settings ===&lt;br /&gt;
*'''Affiliate Payout''' - If the affiliate payout is based on Gross or Revenue. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue.&lt;br /&gt;
*'''Commission Type''' - Possible values are:&lt;br /&gt;
**'''201''' - $ per CPA: Pays your affiliates a flat amount per transaction.&lt;br /&gt;
**'''202''' - % of CPS: Pays your affiliates a percentage of the transaction amount.&lt;br /&gt;
**'''203''' - CPM: Pays your affiliates a flat amount for every 1,000 visitors they send.&lt;br /&gt;
**'''204''' - $ per Click: Pays a flat amount per visitor click.&lt;br /&gt;
**'''205''' - Hybrid: If you need to combine multiple types of payment. This is the default commission type if none is selected.&lt;br /&gt;
*'''Flat per 1000 Impressions''' - Flat amount to pay affiliates per 1000 Impressions.&lt;br /&gt;
*'''Flat per Click''' - Flat amount to pay affiliates per Click.&lt;br /&gt;
*'''Flat per Continuity''' -Flat amount to pay affiliates per Continuity.&lt;br /&gt;
*'''Flat per Conversion''' - Flat amount to pay affiliates per Conversion.&lt;br /&gt;
*'''Flat per Visitor''' - Flat amount to pay affiliates per visitor.&lt;br /&gt;
*'''Continuity %''' - The percentage of the sale to pay affiliates on continuity.&lt;br /&gt;
*'''Conversion %''' - The percentage of the sale to pay affiliates on conversions.&lt;br /&gt;
*'''Deduct Voids''' -  If set to '0', Offerit will ''NOT'' deduct commissions from affiliates for conversions that end up being voided. Defaults to '1'.&lt;br /&gt;
*'''Retroactive Payout''' -  If set to '1', Offerit will pay affiliates the continuity commission set at the time of the conversion, even if the amount changes. Defaults to '0'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Landing Page Settings ===&lt;br /&gt;
*'''Preview URL''' - A URL for a preview of your offer.  Viewable by affiliates. Does not use tracking.&lt;br /&gt;
*'''Landing Page Description''' - Description of your offer and default landing page.&lt;br /&gt;
*'''Internal Description''' - Description only seen by Admins of your Network.&lt;br /&gt;
*'''Landing Page Name''' - Name of this landing page.&lt;br /&gt;
*'''Landing Page Thumb''' - Thumbnail picture for the offer.&lt;br /&gt;
*'''Landing Page URL''' - The URL of your landing page.&lt;br /&gt;
*'''Language''' - The language this offer is in.&lt;br /&gt;
*'''[[Tracking in Offerit|Conversion Type]]''' - Method of tracking conversion. Possible values are:&lt;br /&gt;
**'''iframe''' - iframes that allow for advance tracking. Default selected.&lt;br /&gt;
**'''image''' - Image Pixel / HTML&lt;br /&gt;
**'''post''' - Postback. Server to server postback that can be IP protected.&lt;br /&gt;
*'''[[Tracking Domain]]''' - The tracking domain you wish to use for this offer.&lt;br /&gt;
*'''Requestable''' -  If set to '1', Offerit will mark offer as requestable. Affiliates will be able to see offer and request permission to use it. Only available with private offers. Defaults to '0'.&lt;br /&gt;
*'''Authorized''' -  A comma separated list of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
*'''Unauthorized''' -   A comma separated list of countries unauthorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
*'''Remove [[Offeritcode]]''' - If set to '1', the Offeritcode will not be passed along to the landing page through tracking links. Defaults to '0'.&lt;br /&gt;
*'''Default Continuity''' - Amount of a transaction if amount is not passed in. &lt;br /&gt;
*'''Default Continuity Type''' - To calculate continuity from Revenue or Gross.  Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue.&lt;br /&gt;
*'''Default Conversion Amount''' - Amount of a transaction if amount is not passed in.&lt;br /&gt;
*'''Default Conversion Type''' - To calculate conversions from either Revenue or Gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue.&lt;br /&gt;
&lt;br /&gt;
=== Postback Settings ===&lt;br /&gt;
*'''Allowed Postback IPs''' - A list of IPs that are allowed to send Postbacks for this offer.&lt;br /&gt;
*'''Username Postback URL''' -  The URL Offerit will post data to verify the Customer's username is valid.&lt;br /&gt;
*'''Void Postback URL''' - The URL to send Postbacks to on voids.&lt;br /&gt;
*'''Void Reversal Postback URL''' - The URL to send Postbacks to on void reversals.&lt;br /&gt;
*'''Approval Postback URL''' - The URL to send Postbacks to on first time customer conversions.&lt;br /&gt;
*'''Change Details Postback URL''' - The URL to send Postbacks to when customer details are changed.&lt;br /&gt;
*'''Continuity Postback URL''' - The URL to send Postbacks for continuity.&lt;br /&gt;
*'''Pending Approval Postback URL''' - The URL to send Postbacks to on pending conversions.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Email Settings ===&lt;br /&gt;
*'''Customer Email BCC''' -  Default BCC address for customer E-mails&lt;br /&gt;
*'''Customer ''From'' Email Address''' - The ''From'' E-mail address used to E-mail customers. &lt;br /&gt;
*'''Customer ''From'' Email Nice''' - The Nice, visually appealing ''From'' E-mail address to displayed to customers. &lt;br /&gt;
*'''Customer Reply Email Address''' - The ''Reply-to'' E-mail address used to E-mail customers. &lt;br /&gt;
*'''Customer Reply Nice''' - The Nice, visually appealing ''Reply-to'' E-mail address to displayed to customers.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Tracking_in_Offerit&amp;diff=3365</id>
		<title>Tracking in Offerit</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Tracking_in_Offerit&amp;diff=3365"/>
				<updated>2014-02-05T23:48:35Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_setup_section = true&lt;br /&gt;
| show_misc_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Offerit tracks all hits and conversions to your offers, crediting the exact affiliate who referred each sale.  But how exactly does this work?  How does Offerit know which affiliate referred what conversion, or when an offer is actually completed?&lt;br /&gt;
&lt;br /&gt;
==How Tracking Works==&lt;br /&gt;
It comes down to two things: A [[Linkcode]] and a Conversion Pixel.&lt;br /&gt;
&lt;br /&gt;
=== Affiliate Linkcodes ===&lt;br /&gt;
&lt;br /&gt;
When you create an offer in the Offerit Platform, you and your affiliates will be provided with a [[Linkcode]] (or tracking link).  This is what your affiliates use to refer traffic to your offers.  The code is a link to your offer, also containing information customized to each affiliate.  For more information, please read our [[Linkcode]] article.&lt;br /&gt;
&lt;br /&gt;
Your affiliates can find their linkcodes in the affiliate side of Offerit, in their offers list.  All linkcodes displayed here are automatically tailored to each affiliate.  This means when you create an offer, ''all'' of your affiliates can instantly grab linkcodes containing their own affiliate information, with no extra steps on your part.&lt;br /&gt;
&lt;br /&gt;
=== Conversion Pixels ===&lt;br /&gt;
&lt;br /&gt;
Conversion pixels (also called ''confirmation pixels'', or just ''pixels'') are needed on the advertiser's end so Offerit knows when the conversion has taken place. The pixel is placed on the Confirmation Page (also called ''approval page'', ''thank you page'', etc.).&lt;br /&gt;
&lt;br /&gt;
For example:  &lt;br /&gt;
You are paying your affiliates $1 for every person they refer to take your '''survey'''.  A visitor clicks on an affiliate linkcode and is sent to the landing page of your offer (in this case, the initial survey start page).  Your survey includes five(5) different pages the visitor needs to go through before they complete the survey.  So, how will Offerit know to pay the affiliate ''only'' if the visitor actually completes the survey?&lt;br /&gt;
&lt;br /&gt;
All you need to do is place the conversion pixel code (provided to you by Offerit) onto the Confirmation page of your offer, or the page where the visitor is sent once the conversion is completed.  This is often a ''Thank You'' page, and may includes links to other offers. When the visitor arrives on that page, the pixel is fired and the Affiliate information (gathered from the linkcode) is sent to Offerit.&lt;br /&gt;
&lt;br /&gt;
The way this information is sent is called the '''Tracking Type'''.  While all types follow this general example, each sends information and tracks your offers in a slightly different way.&lt;br /&gt;
&lt;br /&gt;
== Tracking Types ==&lt;br /&gt;
When you create an offer, you are asked to pick a tracking type.  This type is for your conversion pixel, your affiliate linkcodes will appear the same.  Offerit allows affiliates a variety of ways track your offers:  Iframe, Image Pixel, and (server) Postbacks.&lt;br /&gt;
&lt;br /&gt;
[[Image:ConversionType.png]]&lt;br /&gt;
&lt;br /&gt;
The following are examples of pixels that Offerit will generate for you.  One of these conversion codes must appear on the confirmation page of your offer.&lt;br /&gt;
&lt;br /&gt;
'''Iframe:''' The industry standard for tracking. The pixel is fired on your confirmation page and the visitor's browser sends information to Offerit from the cookie (which was created when the affiliate linkcode was clicked).&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;iframe src=&amp;quot;http://example.offerit.com/signup/process_pixel.php?oid=6&amp;quot; height=1 width=1&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Uses cookies.&lt;br /&gt;
*Allows your affiliates to set up their own custom pixels that will also fire on conversion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Image pixel:''' The pixel is fired on your confirmation page and the visitor's browser sends information to Offerit from the cookie (which was created when the affiliate linkcode was clicked).&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;img src=&amp;quot;http://example.offerit.com/signup/process_pixel.php?oid=6&amp;quot; height=1 width=1/&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Uses cookies.&lt;br /&gt;
*Does not allow your affiliates to set up their own custom pixels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Postback:''' The pixel is simply a URL that the server recording the conversion must post to. Because the server is informing Offerit directly, the visitor's browser is not involved.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;http://www.example.com/signup/process_pixel.php?click_hash={CLICK_HASH}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Cookieless tracking: If a user doesn't have cookies enabled (or doesn't have a cookie for any other reason), a conversion will still be recorded.&lt;br /&gt;
*Must include click_hash (%%click_hash%%) in the offer url to be sent with the visitor.&lt;br /&gt;
*The Advertiser must capture and send the click_hash variable back to Offerit on conversion.&lt;br /&gt;
*Allows your affiliates to set up their own custom pixels (''postback only'') that will also fire on conversion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For every [[Ct#Offer|offer]] you have, you will need one of these conversion links on the page where the visitor has completed the [[Ct#Offer|offers]] or [[Ct#Sale|sale]].  When the visitor loads a page with one of these links, the completed [[Ct#Offer|offers]] will be recorded in Offerit as a &amp;quot;sale&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Cookieless Tracking ==&lt;br /&gt;
The Postback tracking type is cookieless, as the server is informing Offerit directly. Cookies are not needed. Instead, Offerit gets the information from the click_hash variable passed in the postback url. However, this only allows affilaites to create custom pixels of the postback type.&lt;br /&gt;
&lt;br /&gt;
Iframe and Image pixel tracking uses cookies (set at the time the linkcode is clicked) to verify conversion details of an offer.  When the visitor reaches the confirmation page, the conversion pixel fires and the cookie notifies Offerit of the conversion. If for some reason a user doesn't have cookies enabled, then a conversion won't be recorded.  This can be avoided by using '''cookieless tracking.'''&lt;br /&gt;
&lt;br /&gt;
Cookieless tracking with Iframe and Image Pixel means passing the transacionID in the offer url and conversion pixel.  In other words, pass the Offerit click_hash variable to the advertiser, and have them send the populated variable back on conversion (in the pixel). It is up to the advertiser to capture the variable to send back to Offerit.&lt;br /&gt;
&lt;br /&gt;
To use click_hash in your conversion pixel, select '''click_hash''' under the ''Specify Conversion Variable'' section of the Offerit Pixel builder.  If ''%%click_hash%%'' is not being passed in your offer url, Offeirt will prompt you to add it before allowing you to select the click_hash type.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Track_and_Strack&amp;diff=3363</id>
		<title>Track and Strack</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Track_and_Strack&amp;diff=3363"/>
				<updated>2014-01-09T16:26:01Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Strack Formatting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_reporting_admin_section = true&lt;br /&gt;
| show_creatives_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== What is Track? ==&lt;br /&gt;
[[Offerit]] uses the ''track'' feature in order to handle primary tracking for in-bound affiliate traffic. This can usually be found in affiliate linkcodes, such as the following example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://&amp;lt;tracking_domain&amp;gt;/track/xxxxxxx&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above landing page, [[Offerit]] will replace ''&amp;lt;tracking_domain&amp;gt;'' with the actual link domain for your offer and replace ''xxxxxxx'' with the proper affiliate [[OfferitCode|Offeritcode]]. This can be seen in the following image:&lt;br /&gt;
&lt;br /&gt;
[[File:Admin_Track_Link_Example.png|900px|Figure 1.1  An Example linkcode using the standard track feature]]&lt;br /&gt;
&lt;br /&gt;
As [[Ct#Visitor|visitors]] hit the track link, [[Offerit]] will perform its tracking, cookie, and session procedures before redirecting the visitor to their original destination landing page URL from the [[Offerit Offers Admin|offers admin]]. The Offeritcode itself, or the link domain (if no Offeritcode is present) will be used by Offerit to match a [[Offerit Tracking Domain|Tracking domain]] or offer id to the correct landing page URL.&lt;br /&gt;
&lt;br /&gt;
== What is Strack? ==&lt;br /&gt;
In contrast to ''track'', ''strack'' replaces one offer ID another offer ID. If you need to provide links from one [[Offerit]] offer to another, for example, you can use ''/strack/'' to replace the default offer ID in the Offeritcode with a new offer ID for the other offer. This also serves the purpose of preserving relevant affiliate information, as well as ensuring that affiliates get credit for any offers that have been completed.&lt;br /&gt;
&lt;br /&gt;
== Strack Formatting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://&amp;lt;trackingdomain&amp;gt;/strack/&amp;lt;offeritcode&amp;gt;/&amp;lt;offerid_or_shortname&amp;gt;:&amp;lt;landing_pageid_or_shortname&amp;gt;/&amp;lt;commission_id_or_shortname&amp;gt;/&amp;lt;track_flag&amp;gt;/&amp;lt;optional_subdirectory_path&amp;gt;/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* '''&amp;lt;[[Tracking Domain|trackingdomain]]&amp;gt;''' is the tracking domain of the offer in Offerit, which will usually be something like example.com, where example.com is the domain of your main landing page.&lt;br /&gt;
&lt;br /&gt;
* '''&amp;lt;[[Offeritcode|offeritcode]]&amp;gt;''' is the Offeritcode from your affiliate or the default Offeritcode for the offer.  Normally this is available to you on a PHP-enabled offer through the usage of the following in-line PHP if statement -- &amp;lt;code&amp;gt;&amp;lt;?=$_REQUEST[offerit]?$_REQUEST[offerit]:xxxxxx?&amp;gt;&amp;lt;/code&amp;gt;  -- which translates to &amp;quot;If there is a value for Offerit set in either GET, POST, or Cookie, use that value. Otherwise, use the default value provided (which is different for every offer).&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* '''offerid_or_shortname''' is the ID number or shortname of your desired offer. This variable represents the target offer and may be different than the offer currently being viewed. If you wish to indicate that you do not want to override the offer ID number with a new one, you can use the value of 0 as the offer ID.&lt;br /&gt;
&lt;br /&gt;
* '''landing_pageid_or_shortname''' is the ID number or shortname of your desired landing page. This is the target landing page and may be different than the offer currently being viewed. You will need to have the offer ID set to the offer that your landing page is available on to use this variable.&lt;br /&gt;
&lt;br /&gt;
* '''commission_id_or_shortname''' is the ID number or shortname of the desired commission. You can use this variable to switch from one commission to another in your [[Offerit]]. Switching commissions can be useful for things such as special offer links. If you do not wish to change the commission, set this value to 0.&lt;br /&gt;
&lt;br /&gt;
* '''track_flag''' is going to count as a new hit and reset the tracking cookie if it wasn't set to 0. If track_flag wasn't set then it will track the hit. If you don't want to track the hit then set the track_flag to 0.&lt;br /&gt;
&lt;br /&gt;
* '''optional_subdirectory_path''' specifies a path to a specific script, document, or subdirectory that is added onto the end of the URL after the tracking redirect. For example, if your offer's main landing page URL in the [[Offerit Offers Admin|Offers Admin]] is www.example.com and you pass in /landingpage1/preview, it will add /landingpage1/preview to end of the URL after redirecting the visitor.&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit]]&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Deny_Transaction&amp;diff=3362</id>
		<title>Offerit API Deny Transaction</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Deny_Transaction&amp;diff=3362"/>
				<updated>2013-12-26T22:49:34Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* NuSOAP Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
This function allows you to deny a specific transaction for a customer. To use this function, you must make a SOAP call with the following parameters:&lt;br /&gt;
&lt;br /&gt;
* '''orderid''' - Your order ID of the sale&lt;br /&gt;
* '''customerid''' - The customer ID of the sale&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
      'transid' =&amp;gt; 265, &lt;br /&gt;
      'customerid' =&amp;gt; 130&lt;br /&gt;
   );&lt;br /&gt;
   &lt;br /&gt;
$result = $client-&amp;gt;call('deny_transaction', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
on success:&lt;br /&gt;
      SUCCESS&lt;br /&gt;
   &lt;br /&gt;
   on error:&lt;br /&gt;
      ERROR: error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2972</id>
		<title>Offerit API Add Offer</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2972"/>
				<updated>2013-04-24T21:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function allows for you to add an offer into Offerit. To use this function, you must make a SOAP call with the following parameters: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Offer Settings:===&lt;br /&gt;
* '''offer_name''' -  Name of the Offer to be created.&lt;br /&gt;
* '''url''' - The URL to send surfers to.&lt;br /&gt;
* '''offer_description''' - (optional) Description of offer. &lt;br /&gt;
* '''date_live''' - (optional) Date when offer should be shown to affiliates. Defaults to now.&lt;br /&gt;
* '''date_expire''' - (optional) Date when offer should stop being shown to affiliates and redirect if configured. Defaults to never.&lt;br /&gt;
* '''expire_offer''' - (optional) Offer ID to send traffic after the expiration date of the offer.&lt;br /&gt;
* '''expire_url''' - (optional) URL to send traffic after the expiration date of the offer. &lt;br /&gt;
* '''hidden''' - (optional) If set to '1', Offerit will hide the offer from affiliates. Defaults to '0'.&lt;br /&gt;
&amp;lt;!-- * '''reuse_active''' - (optional)  --&amp;gt;&lt;br /&gt;
* '''no_personal_member_info''' - (optional) If set to '1', Offerit will not store personal customer information. Defaults to '0'.&lt;br /&gt;
* '''remove_ocode''' - (optional) If set to '1', Offerit code will not be passed along to the landing page through tracking links. Defaults to '0'.&lt;br /&gt;
* '''offer_group_id''' - (optional) Offer Group ID to place this offer into.&lt;br /&gt;
* '''offer_thumb''' - (optional) URL of image to save as a thumbnail for the offer.&lt;br /&gt;
* '''marketing_type''' - (optional) A comma separated list of marketing type IDs active for this offer.&lt;br /&gt;
* '''category''' - (optional) A comma separated list of category IDs active for this offer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Join to Hit Threshold Settings:&lt;br /&gt;
* '''admin_threshold_email''' - (optional) A comma separated list of emails that will be sent an email when the join to hit ratio drops below the threshold.&lt;br /&gt;
* '''mail_threshold''' - (optional) Subject of the email to be sent out when the join to hit ratio drops below the threshold. Required if you wish to receive the emails. &lt;br /&gt;
* '''join_hit_threshold_hour_to_6''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Midnight and 6 AM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_12''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 AM and Noon. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_18''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Noon and 6 PM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_24''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 PM and Midnight. Example: 1:400&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Advertiser Settings:===&lt;br /&gt;
* '''advertiserid''' - (optional) The advertiser ID this offer should be assigned to.&lt;br /&gt;
* '''cost_type''' - (optional) Income for advertiser offer. Possible values are:&lt;br /&gt;
: '''conversion''' - Income will be calculated per conversion. Used with the cost_flat income option.&lt;br /&gt;
: '''sale''' - Income will be calculated per conversion. Used with the cost_perc income option.&lt;br /&gt;
: '''singleimpression''' - Income will be calculated per impression. Used with the cost_flat income option.&lt;br /&gt;
: '''click''' - Income will be calculated per click. Used with the cost_flat income option.&lt;br /&gt;
: '''impression''' - Income will be calculated per 1,000 impressions. Used with the cost_flat income option.&lt;br /&gt;
* '''cost_flat''' - (optional) Flat amount received from advertiser action.&lt;br /&gt;
* '''cost_perc''' - (optional) Percentage amount of transaction received from advertiser action.&lt;br /&gt;
* '''pending''' - (optional) The pending status of this offer. Only used with advertisers. Possible values are:&lt;br /&gt;
: '''0''' = Active&lt;br /&gt;
: '''1''' = Pending&lt;br /&gt;
: '''2''' = Denied&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Commission Settings:===&lt;br /&gt;
* '''comm_type''' - (optional) Commission type. Possible values are:&lt;br /&gt;
: '''201''' = $ per CPA: Pays your affiliates a flat amount per transaction.&lt;br /&gt;
: '''202''' = % of CPS: Pays your affiliates a percentage of the transaction amount.&lt;br /&gt;
: '''203''' = CPM: Pays your affiliates a flat amount for every 1,000 surfers they send.&lt;br /&gt;
: '''204''' = $ per Click: Pays a flat amount per surfer click.&lt;br /&gt;
: '''205''' = Hybrid: If you need to combine multiple types of payment. This is the default commission type selected.&lt;br /&gt;
* '''flat_amount_per_click''' - (optional) Flat amount to be paid out to affiliate per surfer click.&lt;br /&gt;
* '''flat_amount_per_visitor''' - (optional) Flat amount paid out to affiliates per visitor (unique click).&lt;br /&gt;
* '''flat_amount_per_conversion''' - (optional) Flat amount per conversion.&lt;br /&gt;
* '''flat_amount_per_continuity''' - (optional) Flat amount per continuity.&lt;br /&gt;
* '''percentage_of_customer_conversion''' - (optional) Percentage of conversion to be paid to affiliates.&lt;br /&gt;
* '''percentage_of_customer_continuity''' - (optional) Percentage of continuity to be paid to affiliates.&lt;br /&gt;
* '''flat_amount_for_1000_impressions''' - (optional) Flat amount per 1,000 impressions.&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
* '''deduct_voids''' - (optional) If set to '0', Offerit will NOT deduct commissions from affiliates for conversions that end up being voided when this option is enabled. Defaults to '1'.&lt;br /&gt;
* '''hide_conversions''' - (optional) If set to '1', Offerit will NOT display conversions on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on conversions. Defaults to '0'.&lt;br /&gt;
* '''hide_continuities''' - (optional) If set to '1', Offerit will NOT display continuities on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on continuities. Defaults to '0'.&lt;br /&gt;
* '''retro_payout''' - (optional) If set to '1', Offerit will pay affiliates the continuity commission set at the time of the conversion. Defaults to '0'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Landing Page Settings:===&lt;br /&gt;
* '''landing_page_name''' - (optional) Name of the landing page. Defaults to 'Default Landing Page'.&lt;br /&gt;
* '''linkdomain''' - (optional) URL to use as the tracking domain. Defaults to first tracking domain set up within Offerit.&lt;br /&gt;
* '''description''' - (optional) Landing page description.&lt;br /&gt;
* '''internal_desc''' - (optional) Internal description of landing page that only admins will see.&lt;br /&gt;
* '''approvalpost''' - (optional) URL Offerit will post data to when a conversion occurs.&lt;br /&gt;
&amp;lt;!-- * '''rebillpost''' - (optional) --&amp;gt;&lt;br /&gt;
* '''voidpost''' - (optional) URL Offerit will post data to when a Customer's transaction is voided.&lt;br /&gt;
* '''userpost''' - (optional) URL Offerit will post data to verify the Customer's username is valid.&lt;br /&gt;
* '''change_detailspost''' - (optional) URL Offerit will post data to when a Customer's details are changed.&lt;br /&gt;
* '''void_reversal_post''' - (optional) URL Offerit will post data to when a Customer's voided transaction is reversed.&lt;br /&gt;
* '''pending_approvalpost''' - (optional) URL Offerit will post data to when a pending conversion occurs.&lt;br /&gt;
* '''landing_page_language''' - (optional) Language name the default landing page should be associated with.&lt;br /&gt;
* '''initial_type''' - (optional) Sets conversion amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue.&lt;br /&gt;
* '''initial''' - (optional) Conversion amount of transaction if amount is not passed in on the transaction.&lt;br /&gt;
* '''initial_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''rebill_type''' - (optional) Sets continuity amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue.&lt;br /&gt;
* '''rebill''' - (optional) Continuity amount of transaction if amount is not passed in on the transaction.&lt;br /&gt;
* '''rebill_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''conversion_type''' - (optional) Method of tracking conversion. Possible values are:&lt;br /&gt;
: '''iframe''' = iframes that allow for advance tracking. Default selected.&lt;br /&gt;
: '''image''' = Image Pixel / HTML&lt;br /&gt;
: '''post''' = Postback. Server to server postback that can be IP protected.&lt;br /&gt;
* '''postback_ips''' - (optional) Comma separated list of IPs that are allowed to post conversions. Only used with postback conversion type.&lt;br /&gt;
* '''private''' - (optional) If set to '1', Offerit will mark offer as private. Private offers must have affiliates manually enrolled to view offer. Defaults to '0'.&lt;br /&gt;
* '''requestable''' - (optional) If set to '1', Offerit will mark offer as requestable. Affiliates will be able to see offer and request permission to use it. Only available with private offers. Defaults to '0'.&lt;br /&gt;
* '''preview_url''' - (optional) URL of offer for affiliates to preview without going through any tracking.&lt;br /&gt;
* '''authorized''' - (optional) List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''unauthorized''' - (optional) List of countries unauthorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''landing_page_thumb''' - (optional) URL of image to save as a thumbnail for the landing page. Defaults to the offer_thumb if set.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Email Settings:===&lt;br /&gt;
* '''email_from_customer''' - (optional) Default from address for customer E-mails.&lt;br /&gt;
* '''email_from_nice_customer''' - (optional) Default Nice Name for the from address for customer E-mails.&lt;br /&gt;
* '''email_reply_customer''' - (optional) Default reply to address for customer E-mails.&lt;br /&gt;
* '''email_reply_nice_customer''' - (optional) Default Nice Name for the reply to address for customer E-mails.&lt;br /&gt;
* '''email_bcc_to_customer''' - (optional) Default BCC address for customer E-mails.&lt;br /&gt;
* '''email_from_affiliate''' - (optional) Default from address for affiliate E-mails.&lt;br /&gt;
* '''email_from_nice_affiliate''' - (optional) Default Nice Name for the from address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_affiliate''' - (optional) Default reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_nice_affiliate''' - (optional) Default Nice Name for the reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_bcc_to_affiliate''' - (optional) Default BCC address for affiliate E-mails.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'admin_threshold_email' =&amp;gt; 'mike.sopko@offerit.com',&lt;br /&gt;
'mail_threshold' =&amp;gt; 'email subject',&lt;br /&gt;
'join_hit_threshold_hour_to_6' =&amp;gt; '1:450',&lt;br /&gt;
'join_hit_threshold_hour_to_12' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_18' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_24' =&amp;gt; '1:400',--&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'offer_name' =&amp;gt; &amp;quot;Test Api Offer&amp;quot;,&lt;br /&gt;
	'url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'offer_description' =&amp;gt; 'Offer Description',&lt;br /&gt;
	'date_live' =&amp;gt; '2013-12-01',&lt;br /&gt;
	'date_expire' =&amp;gt; '2013-12-02',&lt;br /&gt;
	'pending' =&amp;gt; '0',&lt;br /&gt;
	'hidden' =&amp;gt; '1',&lt;br /&gt;
	'no_personal_member_info' =&amp;gt; '1',&lt;br /&gt;
	'remove_ocode' =&amp;gt; '1',&lt;br /&gt;
	'expire_offer' =&amp;gt; '63',&lt;br /&gt;
	'expire_url' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'offer_group_id' =&amp;gt; '1',&lt;br /&gt;
	'marketing_type' =&amp;gt; '1,3',&lt;br /&gt;
	'category' =&amp;gt; '1,2,5,7',&lt;br /&gt;
	'comm_type' =&amp;gt; '201',&lt;br /&gt;
	'flat_amount_per_click' =&amp;gt; '10',&lt;br /&gt;
	'flat_amount_per_visitor' =&amp;gt; '15',&lt;br /&gt;
	'flat_amount_per_conversion' =&amp;gt; '20',&lt;br /&gt;
	'flat_amount_per_continuity' =&amp;gt; '25',&lt;br /&gt;
	'percentage_of_customer_conversion_revenue' =&amp;gt; '30',&lt;br /&gt;
	'percentage_of_customer_continuity_revenue' =&amp;gt; '35',&lt;br /&gt;
	'flat_amount_for_1000_impressions' =&amp;gt; '40',&lt;br /&gt;
	'deduct_voids' =&amp;gt; '0',&lt;br /&gt;
	'hide_continuities' =&amp;gt; '1',&lt;br /&gt;
	'hide_conversions' =&amp;gt; '1',&lt;br /&gt;
	'retro_payout' =&amp;gt; '1',&lt;br /&gt;
	'landing_page_name' =&amp;gt; 'New API Landing Page',&lt;br /&gt;
	'linkdomain' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'description' =&amp;gt; 'Description',&lt;br /&gt;
	'internal_desc' =&amp;gt; 'Only Admins Can See This',&lt;br /&gt;
	'denypost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'approvalpost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'voidpost' =&amp;gt; 'demo.offerit.com/voidpost.php',&lt;br /&gt;
	'userpost' =&amp;gt; 'demo.offerit.com/userpost.php',&lt;br /&gt;
	'change_detailspost' =&amp;gt; 'demo.offerit.com/change_detailspost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'pending_approvalpost' =&amp;gt; 'demo.offerit.com/pending_approvalpost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'preview_url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'landing_page_language' =&amp;gt; 'English',&lt;br /&gt;
	'initial' =&amp;gt; '10.95',&lt;br /&gt;
	'initial_days' =&amp;gt; '20',&lt;br /&gt;
	'rebill' =&amp;gt; '30',&lt;br /&gt;
	'rebill_days' =&amp;gt; '40',&lt;br /&gt;
	'conversion_type' =&amp;gt; 'iframe',&lt;br /&gt;
	'private' =&amp;gt; '1',&lt;br /&gt;
	'requestable' =&amp;gt; '1',&lt;br /&gt;
	'initial_type' =&amp;gt; '1',&lt;br /&gt;
	'rebill_type' =&amp;gt; '1',&lt;br /&gt;
	'postback_ips' =&amp;gt; '127.0.0.1, 1.1.2.1, 123.123.123.123',&lt;br /&gt;
	'authorized' =&amp;gt; 'US,BG,UK',&lt;br /&gt;
	'unauthorized' =&amp;gt; '',&lt;br /&gt;
	'offer_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/about_16.gif',&lt;br /&gt;
	'landing_page_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/user_16.gif',&lt;br /&gt;
	'email_from_customer' =&amp;gt; 'customer@offerit.com',&lt;br /&gt;
	'email_from_nice_customer' =&amp;gt; 'Customer Offerit Email',&lt;br /&gt;
	'email_reply_customer' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_customer' =&amp;gt; 'Customer Reply Email',&lt;br /&gt;
	'email_bcc_to_customer' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'email_from_affiliate' =&amp;gt; 'affiliate@offerit.com',&lt;br /&gt;
	'email_from_nice_affiliate' =&amp;gt; 'Affiliate Offerit Email',&lt;br /&gt;
	'email_reply_affiliate' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_affiliate' =&amp;gt; 'Affiliate Reply Email',&lt;br /&gt;
	'email_bcc_to_affiliate' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'advertiserid' =&amp;gt; '46',&lt;br /&gt;
	'affiliate_payout' =&amp;gt; '1',&lt;br /&gt;
	'cost_type' =&amp;gt; 'click',&lt;br /&gt;
	'cost_flat' =&amp;gt; '1',&lt;br /&gt;
	'cost_perc' =&amp;gt; '20',&lt;br /&gt;
);&lt;br /&gt;
$result = $client-&amp;gt;call('api_add_offer', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
on success:&lt;br /&gt;
	SUCCESS&lt;br /&gt;
   &lt;br /&gt;
on error:&lt;br /&gt;
	ERROR: error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2971</id>
		<title>Offerit API Add Offer</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2971"/>
				<updated>2013-04-24T21:30:45Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function allows for you to add an offer into Offerit. To use this function, you must make a SOAP call with the following parameters: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Offer Settings:===&lt;br /&gt;
* '''offer_name''' -  Name of the Offer to be created.&lt;br /&gt;
* '''url''' - The URL to send surfers to.&lt;br /&gt;
* '''offer_description''' - (optional) Description of offer. &lt;br /&gt;
* '''date_live''' - (optional) Date when offer should be shown to affiliates. Defaults to now.&lt;br /&gt;
* '''date_expire''' - (optional) Date when offer should stop being shown to affiliates and redirect if configured. Defaults to never.&lt;br /&gt;
* '''expire_offer''' - (optional) Offer ID to send traffic after the expiration date of the offer.&lt;br /&gt;
* '''expire_url''' - (optional) URL to send traffic after the expiration date of the offer. &lt;br /&gt;
* '''hidden''' - (optional) If set to '1', Offerit will hide the offer from affiliates. Defaults to '0'.&lt;br /&gt;
&amp;lt;!-- * '''reuse_active''' - (optional)  --&amp;gt;&lt;br /&gt;
* '''no_personal_member_info''' - (optional) If set to '1', Offerit will not store personal customer information. Defaults to '0'.&lt;br /&gt;
* '''remove_ocode''' - (optional) If set to '1', Offerit code will not be passed along to the landing page through tracking links. Defaults to '0'.&lt;br /&gt;
* '''offer_group_id''' - (optional) Offer Group ID to place this offer into. &lt;br /&gt;
* '''offer_thumb''' - (optional) URL of image to save as a thumbnail for the offer. &lt;br /&gt;
* '''marketing_type''' - (optional) A comma separated list of marketing type IDs active for this offer.&lt;br /&gt;
* '''category''' - (optional) A comma separated list of category IDs active for this offer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Join to Hit Threshold Settings:&lt;br /&gt;
* '''admin_threshold_email''' - (optional) A comma separated list of emails that will be sent an email when the join to hit ratio drops below the threshold.&lt;br /&gt;
* '''mail_threshold''' - (optional) Subject of the email to be sent out when the join to hit ratio drops below the threshold. Required if you wish to receive the emails. &lt;br /&gt;
* '''join_hit_threshold_hour_to_6''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Midnight and 6 AM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_12''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 AM and Noon. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_18''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Noon and 6 PM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_24''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 PM and Midnight. Example: 1:400&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Advertiser Settings:===&lt;br /&gt;
* '''advertiserid''' - (optional) The advertiser ID this offer should be assigned to. &lt;br /&gt;
* '''cost_type''' - (optional) Income for advertiser offer. Possible values are:&lt;br /&gt;
: '''conversion''' - Income will be calculated per conversion. Used with the cost_flat income option.&lt;br /&gt;
: '''sale''' - Income will be calculated per conversion. Used with the cost_perc income option.&lt;br /&gt;
: '''singleimpression''' - Income will be calculated per impression. Used with the cost_flat income option. &lt;br /&gt;
: '''click''' - Income will be calculated per click. Used with the cost_flat income option.&lt;br /&gt;
: '''impression''' - Income will be calculated per 1,000 impressions. Used with the cost_flat income option. &lt;br /&gt;
* '''cost_flat''' - (optional) Flat amount received from advertiser action.&lt;br /&gt;
* '''cost_perc''' - (optional) Percentage amount of transaction received from advertiser action. &lt;br /&gt;
* '''pending''' - (optional) The pending status of this offer. Only used with advertisers. Possible values are:&lt;br /&gt;
: '''0''' = Active&lt;br /&gt;
: '''1''' = Pending&lt;br /&gt;
: '''2''' = Denied&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Commission Settings:===&lt;br /&gt;
* '''comm_type''' - (optional) Commission type. Possible values are:&lt;br /&gt;
: '''201''' = $ per CPA: Pays your affiliates a flat amount per transaction.&lt;br /&gt;
: '''202''' = % of CPS: Pays your affiliates a percentage of the transaction amount. &lt;br /&gt;
: '''203''' = CPM: Pays your affiliates a flat amount for every 1,000 surfers they send. &lt;br /&gt;
: '''204''' = $ per Click: Pays a flat amount per surfer click.&lt;br /&gt;
: '''205''' = Hybrid: If you need to combine multiple types of payment. This is the default commission type selected. &lt;br /&gt;
* '''flat_amount_per_click''' - (optional) Flat amount to be paid out to affiliate per surfer click.&lt;br /&gt;
* '''flat_amount_per_visitor''' - (optional) Flat amount paid out to affiliates per visitor (unique click).&lt;br /&gt;
* '''flat_amount_per_conversion''' - (optional) Flat amount per conversion. &lt;br /&gt;
* '''flat_amount_per_continuity''' - (optional) Flat amount per continuity.&lt;br /&gt;
* '''percentage_of_customer_conversion''' - (optional) Percentage of conversion to be paid to affiliates. &lt;br /&gt;
* '''percentage_of_customer_continuity''' - (optional) Percentage of continuity to be paid to affiliates. &lt;br /&gt;
* '''flat_amount_for_1000_impressions''' - (optional) Flat amount per 1,000 impressions&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
* '''deduct_voids''' - (optional) If set to '0', Offerit will NOT deduct commissions from affiliates for conversions that end up being voided when this option is enabled. Defaults to '1'.&lt;br /&gt;
* '''hide_conversions''' - (optional) If set to '1', Offerit will NOT display conversions on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on conversions. Defaults to '0'.&lt;br /&gt;
* '''hide_continuities''' - (optional) If set to '1', Offerit will NOT display continuities on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on continuities. Defaults to '0'.&lt;br /&gt;
* '''retro_payout''' - (optional) If set to '1', Offerit will pay affiliates the continuity commission set at the time of the conversion. Defaults to '0'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Landing Page Settings:===&lt;br /&gt;
* '''landing_page_name''' - (optional) Name of the landing page. Defaults to 'Default Landing Page'.&lt;br /&gt;
* '''linkdomain''' - (optional) URL to use as the tracking domain. Defaults to first tracking domain set up within Offerit.&lt;br /&gt;
* '''description''' - (optional) Landing page description.&lt;br /&gt;
* '''internal_desc''' - (optional) Internal description of landing page that only admins will see. &lt;br /&gt;
* '''approvalpost''' - (optional) URL Offerit will post data to when a conversion occurs. &lt;br /&gt;
&amp;lt;!-- * '''rebillpost''' - (optional) --&amp;gt;&lt;br /&gt;
* '''voidpost''' - (optional) URL Offerit will post data to when a Customer's transaction is voided. &lt;br /&gt;
* '''userpost''' - (optional) URL Offerit will post data to verify the Customer's username is valid.&lt;br /&gt;
* '''change_detailspost''' - (optional) URL Offerit will post data to when a Customer's details are changed. &lt;br /&gt;
* '''void_reversal_post''' - (optional) URL Offerit will post data to when a Customer's voided transaction is reversed. &lt;br /&gt;
* '''pending_approvalpost''' - (optional) URL Offerit will post data to when a pending conversion occurs.&lt;br /&gt;
* '''landing_page_language''' - (optional) Language name the default landing page should be associated with.&lt;br /&gt;
* '''initial_type''' - (optional) Sets conversion amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''initial''' - (optional) Conversion amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''initial_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''rebill_type''' - (optional) Sets continuity amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''rebill''' - (optional) Continuity amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''rebill_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''conversion_type''' - (optional) Method of tracking conversion. Possible values are:&lt;br /&gt;
: '''iframe''' = iframes that allow for advance tracking. Default selected. &lt;br /&gt;
: '''image''' = Image Pixel / HTML&lt;br /&gt;
: '''post''' = Postback. Server to server postback that can be IP protected. &lt;br /&gt;
* '''postback_ips''' - (optional) Comma separated list of IPs that are allowed to post conversions. Only used with postback conversion type.&lt;br /&gt;
* '''private''' - (optional) If set to '1', Offerit will mark offer as private. Private offers must have affiliates manually enrolled to view offer. Defaults to '0'.&lt;br /&gt;
* '''requestable''' - (optional) If set to '1', Offerit will mark offer as requestable. Affiliates will be able to see offer and request permission to use it. Only available with private offers. Defaults to '0'.&lt;br /&gt;
* '''preview_url''' - (optional) URL of offer for affiliates to preview without going through any tracking. &lt;br /&gt;
* '''authorized''' - (optional) List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''unauthorized''' - (optional) List of countries unauthorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''landing_page_thumb''' - (optional) URL of image to save as a thumbnail for the landing page. Defaults to the offer_thumb if set. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Email Settings:===&lt;br /&gt;
* '''email_from_customer''' - (optional) Default from address for customer E-mails.&lt;br /&gt;
* '''email_from_nice_customer''' - (optional) Default Nice Name for the from address for customer E-mails.&lt;br /&gt;
* '''email_reply_customer''' - (optional) Default reply to address for customer E-mails.&lt;br /&gt;
* '''email_reply_nice_customer''' - (optional) Default Nice Name for the reply to address for customer E-mails.&lt;br /&gt;
* '''email_bcc_to_customer''' - (optional) Default BCC address for customer E-mails.&lt;br /&gt;
* '''email_from_affiliate''' - (optional) Default from address for affiliate E-mails.&lt;br /&gt;
* '''email_from_nice_affiliate''' - (optional) Default Nice Name for the from address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_affiliate''' - (optional) Default reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_nice_affiliate''' - (optional) Default Nice Name for the reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_bcc_to_affiliate''' - (optional) Default BCC address for affiliate E-mails.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'admin_threshold_email' =&amp;gt; 'mike.sopko@offerit.com',&lt;br /&gt;
'mail_threshold' =&amp;gt; 'email subject',&lt;br /&gt;
'join_hit_threshold_hour_to_6' =&amp;gt; '1:450',&lt;br /&gt;
'join_hit_threshold_hour_to_12' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_18' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_24' =&amp;gt; '1:400',--&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'offer_name' =&amp;gt; &amp;quot;Test Api Offer&amp;quot;,&lt;br /&gt;
	'url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'offer_description' =&amp;gt; 'Offer Description',&lt;br /&gt;
	'date_live' =&amp;gt; '2013-12-01',&lt;br /&gt;
	'date_expire' =&amp;gt; '2013-12-02',&lt;br /&gt;
	'pending' =&amp;gt; '0',&lt;br /&gt;
	'hidden' =&amp;gt; '1',&lt;br /&gt;
	'no_personal_member_info' =&amp;gt; '1',&lt;br /&gt;
	'remove_ocode' =&amp;gt; '1',&lt;br /&gt;
	'expire_offer' =&amp;gt; '63',&lt;br /&gt;
	'expire_url' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'offer_group_id' =&amp;gt; '1',&lt;br /&gt;
	'marketing_type' =&amp;gt; '1,3',&lt;br /&gt;
	'category' =&amp;gt; '1,2,5,7',&lt;br /&gt;
	'comm_type' =&amp;gt; '201',&lt;br /&gt;
	'flat_amount_per_click' =&amp;gt; '10',&lt;br /&gt;
	'flat_amount_per_visitor' =&amp;gt; '15',&lt;br /&gt;
	'flat_amount_per_conversion' =&amp;gt; '20',&lt;br /&gt;
	'flat_amount_per_continuity' =&amp;gt; '25',&lt;br /&gt;
	'percentage_of_customer_conversion_revenue' =&amp;gt; '30',&lt;br /&gt;
	'percentage_of_customer_continuity_revenue' =&amp;gt; '35',&lt;br /&gt;
	'flat_amount_for_1000_impressions' =&amp;gt; '40',&lt;br /&gt;
	'deduct_voids' =&amp;gt; '0',&lt;br /&gt;
	'hide_continuities' =&amp;gt; '1',&lt;br /&gt;
	'hide_conversions' =&amp;gt; '1',&lt;br /&gt;
	'retro_payout' =&amp;gt; '1',&lt;br /&gt;
	'landing_page_name' =&amp;gt; 'New API Landing Page',&lt;br /&gt;
	'linkdomain' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'description' =&amp;gt; 'Description',&lt;br /&gt;
	'internal_desc' =&amp;gt; 'Only Admins Can See This',&lt;br /&gt;
	'denypost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'approvalpost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'voidpost' =&amp;gt; 'demo.offerit.com/voidpost.php',&lt;br /&gt;
	'userpost' =&amp;gt; 'demo.offerit.com/userpost.php',&lt;br /&gt;
	'change_detailspost' =&amp;gt; 'demo.offerit.com/change_detailspost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'pending_approvalpost' =&amp;gt; 'demo.offerit.com/pending_approvalpost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'preview_url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'landing_page_language' =&amp;gt; 'English',&lt;br /&gt;
	'initial' =&amp;gt; '10.95',&lt;br /&gt;
	'initial_days' =&amp;gt; '20',&lt;br /&gt;
	'rebill' =&amp;gt; '30',&lt;br /&gt;
	'rebill_days' =&amp;gt; '40',&lt;br /&gt;
	'conversion_type' =&amp;gt; 'iframe',&lt;br /&gt;
	'private' =&amp;gt; '1',&lt;br /&gt;
	'requestable' =&amp;gt; '1',&lt;br /&gt;
	'initial_type' =&amp;gt; '1',&lt;br /&gt;
	'rebill_type' =&amp;gt; '1',&lt;br /&gt;
	'postback_ips' =&amp;gt; '127.0.0.1, 1.1.2.1, 123.123.123.123',&lt;br /&gt;
	'authorized' =&amp;gt; 'US,BG,UK',&lt;br /&gt;
	'unauthorized' =&amp;gt; '',&lt;br /&gt;
	'offer_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/about_16.gif',&lt;br /&gt;
	'landing_page_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/user_16.gif',&lt;br /&gt;
	'email_from_customer' =&amp;gt; 'customer@offerit.com',&lt;br /&gt;
	'email_from_nice_customer' =&amp;gt; 'Customer Offerit Email',&lt;br /&gt;
	'email_reply_customer' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_customer' =&amp;gt; 'Customer Reply Email',&lt;br /&gt;
	'email_bcc_to_customer' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'email_from_affiliate' =&amp;gt; 'affiliate@offerit.com',&lt;br /&gt;
	'email_from_nice_affiliate' =&amp;gt; 'Affiliate Offerit Email',&lt;br /&gt;
	'email_reply_affiliate' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_affiliate' =&amp;gt; 'Affiliate Reply Email',&lt;br /&gt;
	'email_bcc_to_affiliate' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'advertiserid' =&amp;gt; '46',&lt;br /&gt;
	'affiliate_payout' =&amp;gt; '1',&lt;br /&gt;
	'cost_type' =&amp;gt; 'click',&lt;br /&gt;
	'cost_flat' =&amp;gt; '1',&lt;br /&gt;
	'cost_perc' =&amp;gt; '20',&lt;br /&gt;
);&lt;br /&gt;
$result = $client-&amp;gt;call('api_add_offer', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
on success:&lt;br /&gt;
	SUCCESS&lt;br /&gt;
   &lt;br /&gt;
on error:&lt;br /&gt;
	ERROR: error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2970</id>
		<title>Offerit API Add Offer</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2970"/>
				<updated>2013-04-24T21:24:15Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* NuSOAP Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function allows for you to add an offer into Offerit. To use this function, you must make a SOAP call with the following parameters: &lt;br /&gt;
&lt;br /&gt;
===Offer Settings:===&lt;br /&gt;
* '''offer_name''' -  Name of the Offer to be created.&lt;br /&gt;
* '''url''' - The URL to send surfers to.&lt;br /&gt;
* '''offer_description''' - (optional) Description of offer. &lt;br /&gt;
* '''date_live''' - (optional) Date when offer should be shown to affiliates. Defaults to now.&lt;br /&gt;
* '''date_expire''' - (optional) Date when offer should stop being shown to affiliates and redirect if configured. Defaults to never.&lt;br /&gt;
* '''expire_offer''' - (optional) Offer ID to send traffic after the expiration date of the offer.&lt;br /&gt;
* '''expire_url''' - (optional) URL to send traffic after the expiration date of the offer. &lt;br /&gt;
* '''hidden''' - (optional) If set to '1', Offerit will hide the offer from affiliates. Defaults to '0'.&lt;br /&gt;
&amp;lt;!-- * '''reuse_active''' - (optional)  --&amp;gt;&lt;br /&gt;
* '''no_personal_member_info''' - (optional) If set to '1', Offerit will not store personal customer information. Defaults to '0'.&lt;br /&gt;
* '''remove_ocode''' - (optional) If set to '1', Offerit code will not be passed along to the landing page through tracking links. Defaults to '0'.&lt;br /&gt;
* '''offer_group_id''' - (optional) Offer Group ID to place this offer into. &lt;br /&gt;
* '''offer_thumb''' - (optional) URL of image to save as a thumbnail for the offer. &lt;br /&gt;
* '''marketing_type''' - (optional) A comma separated list of marketing type IDs active for this offer.&lt;br /&gt;
* '''category''' - (optional) A comma separated list of category IDs active for this offer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Join to Hit Threshold Settings:&lt;br /&gt;
* '''admin_threshold_email''' - (optional) A comma separated list of emails that will be sent an email when the join to hit ratio drops below the threshold.&lt;br /&gt;
* '''mail_threshold''' - (optional) Subject of the email to be sent out when the join to hit ratio drops below the threshold. Required if you wish to receive the emails. &lt;br /&gt;
* '''join_hit_threshold_hour_to_6''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Midnight and 6 AM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_12''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 AM and Noon. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_18''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Noon and 6 PM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_24''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 PM and Midnight. Example: 1:400&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
===Advertiser Settings:===&lt;br /&gt;
* '''advertiserid''' - (optional) The advertiser ID this offer should be assigned to. &lt;br /&gt;
* '''cost_type''' - (optional) Income for advertiser offer. Possible values are:&lt;br /&gt;
** '''conversion''' - Income will be calculated per conversion. Used with the cost_flat income option.&lt;br /&gt;
** '''sale''' - Income will be calculated per conversion. Used with the cost_perc income option.&lt;br /&gt;
** '''singleimpression''' - Income will be calculated per impression. Used with the cost_flat income option. &lt;br /&gt;
** '''click''' - Income will be calculated per click. Used with the cost_flat income option.&lt;br /&gt;
** '''impression''' - Income will be calculated per 1,000 impressions. Used with the cost_flat income option. &lt;br /&gt;
* '''cost_flat''' - (optional) Flat amount received from advertiser action.&lt;br /&gt;
* '''cost_perc''' - (optional) Percentage amount of transaction received from advertiser action. &lt;br /&gt;
* '''pending''' - (optional) The pending status of this offer. Only used with advertisers. Possible values are:&lt;br /&gt;
** '''0''' = Active&lt;br /&gt;
** '''1''' = Pending&lt;br /&gt;
** '''2''' = Denied&lt;br /&gt;
&lt;br /&gt;
===Commission Settings:===&lt;br /&gt;
* '''comm_type''' - (optional) Commission type. Possible values are:&lt;br /&gt;
** '''201''' = $ per CPA: Pays your affiliates a flat amount per transaction.&lt;br /&gt;
** '''202''' = % of CPS: Pays your affiliates a percentage of the transaction amount. &lt;br /&gt;
** '''203''' = CPM: Pays your affiliates a flat amount for every 1,000 surfers they send. &lt;br /&gt;
** '''204''' = $ per Click: Pays a flat amount per surfer click.&lt;br /&gt;
** '''205''' = Hybrid: If you need to combine multiple types of payment. This is the default commission type selected. &lt;br /&gt;
* '''flat_amount_per_click''' - (optional) Flat amount to be paid out to affiliate per surfer click.&lt;br /&gt;
* '''flat_amount_per_visitor''' - (optional) Flat amount paid out to affiliates per visitor (unique click).&lt;br /&gt;
* '''flat_amount_per_conversion''' - (optional) Flat amount per conversion. &lt;br /&gt;
* '''flat_amount_per_continuity''' - (optional) Flat amount per continuity.&lt;br /&gt;
* '''percentage_of_customer_conversion''' - (optional) Percentage of conversion to be paid to affiliates. &lt;br /&gt;
* '''percentage_of_customer_continuity''' - (optional) Percentage of continuity to be paid to affiliates. &lt;br /&gt;
* '''flat_amount_for_1000_impressions''' - (optional) Flat amount per 1,000 impressions&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
* '''deduct_voids''' - (optional) If set to '0', Offerit will NOT deduct commissions from affiliates for conversions that end up being voided when this option is enabled. Defaults to '1'.&lt;br /&gt;
* '''hide_conversions''' - (optional) If set to '1', Offerit will NOT display conversions on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on conversions. Defaults to '0'.&lt;br /&gt;
* '''hide_continuities''' - (optional) If set to '1', Offerit will NOT display continuities on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on continuities. Defaults to '0'.&lt;br /&gt;
* '''retro_payout''' - (optional) If set to '1', Offerit will pay affiliates the continuity commission set at the time of the conversion. Defaults to '0'.&lt;br /&gt;
&lt;br /&gt;
===Landing Page Settings:===&lt;br /&gt;
* '''landing_page_name''' - (optional) Name of the landing page. Defaults to 'Default Landing Page'.&lt;br /&gt;
* '''linkdomain''' - (optional) URL to use as the tracking domain. Defaults to first tracking domain set up within Offerit.&lt;br /&gt;
* '''description''' - (optional) Landing page description.&lt;br /&gt;
* '''internal_desc''' - (optional) Internal description of landing page that only admins will see. &lt;br /&gt;
* '''approvalpost''' - (optional) URL Offerit will post data to when a conversion occurs. &lt;br /&gt;
&amp;lt;!-- * '''rebillpost''' - (optional) --&amp;gt;&lt;br /&gt;
* '''voidpost''' - (optional) URL Offerit will post data to when a Customer's transaction is voided. &lt;br /&gt;
* '''userpost''' - (optional) URL Offerit will post data to verify the Customer's username is valid.&lt;br /&gt;
* '''change_detailspost''' - (optional) URL Offerit will post data to when a Customer's details are changed. &lt;br /&gt;
* '''void_reversal_post''' - (optional) URL Offerit will post data to when a Customer's voided transaction is reversed. &lt;br /&gt;
* '''pending_approvalpost''' - (optional) URL Offerit will post data to when a pending conversion occurs.&lt;br /&gt;
* '''landing_page_language''' - (optional) Language name the default landing page should be associated with.&lt;br /&gt;
* '''initial_type''' - (optional) Sets conversion amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''initial''' - (optional) Conversion amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''initial_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''rebill_type''' - (optional) Sets continuity amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''rebill''' - (optional) Continuity amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''rebill_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''conversion_type''' - (optional) Method of tracking conversion. Possible values are:&lt;br /&gt;
** '''iframe''' = iframes that allow for advance tracking. Default selected. &lt;br /&gt;
** '''image''' = Image Pixel / HTML&lt;br /&gt;
** '''post''' = Postback. Server to server postback that can be IP protected. &lt;br /&gt;
* '''postback_ips''' - (optional) Comma separated list of IPs that are allowed to post conversions. Only used with postback conversion type.&lt;br /&gt;
* '''private''' - (optional) If set to '1', Offerit will mark offer as private. Private offers must have affiliates manually enrolled to view offer. Defaults to '0'.&lt;br /&gt;
* '''requestable''' - (optional) If set to '1', Offerit will mark offer as requestable. Affiliates will be able to see offer and request permission to use it. Only available with private offers. Defaults to '0'.&lt;br /&gt;
* '''preview_url''' - (optional) URL of offer for affiliates to preview without going through any tracking. &lt;br /&gt;
* '''authorized''' - (optional) List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''unauthorized''' - (optional) List of countries unauthorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''landing_page_thumb''' - (optional) URL of image to save as a thumbnail for the landing page. Defaults to the offer_thumb if set. &lt;br /&gt;
&lt;br /&gt;
===Email Settings:===&lt;br /&gt;
* '''email_from_customer''' - (optional) Default from address for customer E-mails.&lt;br /&gt;
* '''email_from_nice_customer''' - (optional) Default Nice Name for the from address for customer E-mails.&lt;br /&gt;
* '''email_reply_customer''' - (optional) Default reply to address for customer E-mails.&lt;br /&gt;
* '''email_reply_nice_customer''' - (optional) Default Nice Name for the reply to address for customer E-mails.&lt;br /&gt;
* '''email_bcc_to_customer''' - (optional) Default BCC address for customer E-mails.&lt;br /&gt;
* '''email_from_affiliate''' - (optional) Default from address for affiliate E-mails.&lt;br /&gt;
* '''email_from_nice_affiliate''' - (optional) Default Nice Name for the from address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_affiliate''' - (optional) Default reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_nice_affiliate''' - (optional) Default Nice Name for the reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_bcc_to_affiliate''' - (optional) Default BCC address for affiliate E-mails.&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'admin_threshold_email' =&amp;gt; 'mike.sopko@offerit.com',&lt;br /&gt;
'mail_threshold' =&amp;gt; 'email subject',&lt;br /&gt;
'join_hit_threshold_hour_to_6' =&amp;gt; '1:450',&lt;br /&gt;
'join_hit_threshold_hour_to_12' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_18' =&amp;gt; '1:400',&lt;br /&gt;
'join_hit_threshold_hour_to_24' =&amp;gt; '1:400',--&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'offer_name' =&amp;gt; &amp;quot;Test Api Offer&amp;quot;,&lt;br /&gt;
	'url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'offer_description' =&amp;gt; 'Offer Description',&lt;br /&gt;
	'date_live' =&amp;gt; '2013-12-01',&lt;br /&gt;
	'date_expire' =&amp;gt; '2013-12-02',&lt;br /&gt;
	'pending' =&amp;gt; '0',&lt;br /&gt;
	'hidden' =&amp;gt; '1',&lt;br /&gt;
	'no_personal_member_info' =&amp;gt; '1',&lt;br /&gt;
	'remove_ocode' =&amp;gt; '1',&lt;br /&gt;
	'expire_offer' =&amp;gt; '63',&lt;br /&gt;
	'expire_url' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'offer_group_id' =&amp;gt; '1',&lt;br /&gt;
	'marketing_type' =&amp;gt; '1,3',&lt;br /&gt;
	'category' =&amp;gt; '1,2,5,7',&lt;br /&gt;
	'comm_type' =&amp;gt; '201',&lt;br /&gt;
	'flat_amount_per_click' =&amp;gt; '10',&lt;br /&gt;
	'flat_amount_per_visitor' =&amp;gt; '15',&lt;br /&gt;
	'flat_amount_per_conversion' =&amp;gt; '20',&lt;br /&gt;
	'flat_amount_per_continuity' =&amp;gt; '25',&lt;br /&gt;
	'percentage_of_customer_conversion_revenue' =&amp;gt; '30',&lt;br /&gt;
	'percentage_of_customer_continuity_revenue' =&amp;gt; '35',&lt;br /&gt;
	'flat_amount_for_1000_impressions' =&amp;gt; '40',&lt;br /&gt;
	'deduct_voids' =&amp;gt; '0',&lt;br /&gt;
	'hide_continuities' =&amp;gt; '1',&lt;br /&gt;
	'hide_conversions' =&amp;gt; '1',&lt;br /&gt;
	'retro_payout' =&amp;gt; '1',&lt;br /&gt;
	'landing_page_name' =&amp;gt; 'New API Landing Page',&lt;br /&gt;
	'linkdomain' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'description' =&amp;gt; 'Description',&lt;br /&gt;
	'internal_desc' =&amp;gt; 'Only Admins Can See This',&lt;br /&gt;
	'denypost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'approvalpost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'voidpost' =&amp;gt; 'demo.offerit.com/voidpost.php',&lt;br /&gt;
	'userpost' =&amp;gt; 'demo.offerit.com/userpost.php',&lt;br /&gt;
	'change_detailspost' =&amp;gt; 'demo.offerit.com/change_detailspost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'pending_approvalpost' =&amp;gt; 'demo.offerit.com/pending_approvalpost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'preview_url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'landing_page_language' =&amp;gt; 'English',&lt;br /&gt;
	'initial' =&amp;gt; '10.95',&lt;br /&gt;
	'initial_days' =&amp;gt; '20',&lt;br /&gt;
	'rebill' =&amp;gt; '30',&lt;br /&gt;
	'rebill_days' =&amp;gt; '40',&lt;br /&gt;
	'conversion_type' =&amp;gt; 'iframe',&lt;br /&gt;
	'private' =&amp;gt; '1',&lt;br /&gt;
	'requestable' =&amp;gt; '1',&lt;br /&gt;
	'initial_type' =&amp;gt; '1',&lt;br /&gt;
	'rebill_type' =&amp;gt; '1',&lt;br /&gt;
	'postback_ips' =&amp;gt; '127.0.0.1, 1.1.2.1, 123.123.123.123',&lt;br /&gt;
	'authorized' =&amp;gt; 'US,BG,UK',&lt;br /&gt;
	'unauthorized' =&amp;gt; '',&lt;br /&gt;
	'offer_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/about_16.gif',&lt;br /&gt;
	'landing_page_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/user_16.gif',&lt;br /&gt;
	'email_from_customer' =&amp;gt; 'customer@offerit.com',&lt;br /&gt;
	'email_from_nice_customer' =&amp;gt; 'Customer Offerit Email',&lt;br /&gt;
	'email_reply_customer' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_customer' =&amp;gt; 'Customer Reply Email',&lt;br /&gt;
	'email_bcc_to_customer' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'email_from_affiliate' =&amp;gt; 'affiliate@offerit.com',&lt;br /&gt;
	'email_from_nice_affiliate' =&amp;gt; 'Affiliate Offerit Email',&lt;br /&gt;
	'email_reply_affiliate' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_affiliate' =&amp;gt; 'Affiliate Reply Email',&lt;br /&gt;
	'email_bcc_to_affiliate' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'advertiserid' =&amp;gt; '46',&lt;br /&gt;
	'affiliate_payout' =&amp;gt; '1',&lt;br /&gt;
	'cost_type' =&amp;gt; 'click',&lt;br /&gt;
	'cost_flat' =&amp;gt; '1',&lt;br /&gt;
	'cost_perc' =&amp;gt; '20',&lt;br /&gt;
);&lt;br /&gt;
$result = $client-&amp;gt;call('api_add_offer', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
on success:&lt;br /&gt;
	SUCCESS&lt;br /&gt;
   &lt;br /&gt;
on error:&lt;br /&gt;
	ERROR: error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2969</id>
		<title>Offerit API Add Offer</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2969"/>
				<updated>2013-04-24T21:14:03Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This function allows for you to add an offer into Offerit. To use this function, you must make a SOAP call with the following parameters: &lt;br /&gt;
&lt;br /&gt;
===Offer Settings:===&lt;br /&gt;
* '''offer_name''' -  Name of the Offer to be created.&lt;br /&gt;
* '''url''' - The URL to send surfers to.&lt;br /&gt;
* '''offer_description''' - (optional) Description of offer. &lt;br /&gt;
* '''date_live''' - (optional) Date when offer should be shown to affiliates. Defaults to now.&lt;br /&gt;
* '''date_expire''' - (optional) Date when offer should stop being shown to affiliates and redirect if configured. Defaults to never.&lt;br /&gt;
* '''expire_offer''' - (optional) Offer ID to send traffic after the expiration date of the offer.&lt;br /&gt;
* '''expire_url''' - (optional) URL to send traffic after the expiration date of the offer. &lt;br /&gt;
* '''hidden''' - (optional) If set to '1', Offerit will hide the offer from affiliates. Defaults to '0'.&lt;br /&gt;
&amp;lt;!-- * '''reuse_active''' - (optional)  --&amp;gt;&lt;br /&gt;
* '''no_personal_member_info''' - (optional) If set to '1', Offerit will not store personal customer information. Defaults to '0'.&lt;br /&gt;
* '''remove_ocode''' - (optional) If set to '1', Offerit code will not be passed along to the landing page through tracking links. Defaults to '0'.&lt;br /&gt;
* '''offer_group_id''' - (optional) Offer Group ID to place this offer into. &lt;br /&gt;
* '''offer_thumb''' - (optional) URL of image to save as a thumbnail for the offer. &lt;br /&gt;
* '''marketing_type''' - (optional) A comma separated list of marketing type IDs active for this offer.&lt;br /&gt;
* '''category''' - (optional) A comma separated list of category IDs active for this offer&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Join to Hit Threshold Settings:&lt;br /&gt;
* '''admin_threshold_email''' - (optional) A comma separated list of emails that will be sent an email when the join to hit ratio drops below the threshold.&lt;br /&gt;
* '''mail_threshold''' - (optional) Subject of the email to be sent out when the join to hit ratio drops below the threshold. Required if you wish to receive the emails. &lt;br /&gt;
* '''join_hit_threshold_hour_to_6''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Midnight and 6 AM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_12''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 AM and Noon. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_18''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of Noon and 6 PM. Example: 1:400&lt;br /&gt;
* '''join_hit_threshold_hour_to_24''' - (optional) This is the join to hit ratio threshold that will be checked between the hours of 6 PM and Midnight. Example: 1:400&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
===Advertiser Settings:===&lt;br /&gt;
* '''advertiserid''' - (optional) The advertiser ID this offer should be assigned to. &lt;br /&gt;
* '''cost_type''' - (optional) Income for advertiser offer. Possible values are:&lt;br /&gt;
** '''conversion''' - Income will be calculated per conversion. Used with the cost_flat income option.&lt;br /&gt;
** '''sale''' - Income will be calculated per conversion. Used with the cost_perc income option.&lt;br /&gt;
** '''singleimpression''' - Income will be calculated per impression. Used with the cost_flat income option. &lt;br /&gt;
** '''click''' - Income will be calculated per click. Used with the cost_flat income option.&lt;br /&gt;
** '''impression''' - Income will be calculated per 1,000 impressions. Used with the cost_flat income option. &lt;br /&gt;
* '''cost_flat''' - (optional) Flat amount received from advertiser action.&lt;br /&gt;
* '''cost_perc''' - (optional) Percentage amount of transaction received from advertiser action. &lt;br /&gt;
* '''pending''' - (optional) The pending status of this offer. Only used with advertisers. Possible values are:&lt;br /&gt;
** '''0''' = Active&lt;br /&gt;
** '''1''' = Pending&lt;br /&gt;
** '''2''' = Denied&lt;br /&gt;
&lt;br /&gt;
===Commission Settings:===&lt;br /&gt;
* '''comm_type''' - (optional) Commission type. Possible values are:&lt;br /&gt;
** '''201''' = $ per CPA: Pays your affiliates a flat amount per transaction.&lt;br /&gt;
** '''202''' = % of CPS: Pays your affiliates a percentage of the transaction amount. &lt;br /&gt;
** '''203''' = CPM: Pays your affiliates a flat amount for every 1,000 surfers they send. &lt;br /&gt;
** '''204''' = $ per Click: Pays a flat amount per surfer click.&lt;br /&gt;
** '''205''' = Hybrid: If you need to combine multiple types of payment. This is the default commission type selected. &lt;br /&gt;
* '''flat_amount_per_click''' - (optional) Flat amount to be paid out to affiliate per surfer click.&lt;br /&gt;
* '''flat_amount_per_visitor''' - (optional) Flat amount paid out to affiliates per visitor (unique click).&lt;br /&gt;
* '''flat_amount_per_conversion''' - (optional) Flat amount per conversion. &lt;br /&gt;
* '''flat_amount_per_continuity''' - (optional) Flat amount per continuity.&lt;br /&gt;
* '''percentage_of_customer_conversion''' - (optional) Percentage of conversion to be paid to affiliates. &lt;br /&gt;
* '''percentage_of_customer_continuity''' - (optional) Percentage of continuity to be paid to affiliates. &lt;br /&gt;
* '''flat_amount_for_1000_impressions''' - (optional) Flat amount per 1,000 impressions&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''flat_amount_per_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_call''' - (optional) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- * '''percentage_of_phone_conversion''' - (optional) --&amp;gt;&lt;br /&gt;
* '''deduct_voids''' - (optional) If set to '0', Offerit will NOT deduct commissions from affiliates for conversions that end up being voided when this option is enabled. Defaults to '1'.&lt;br /&gt;
* '''hide_conversions''' - (optional) If set to '1', Offerit will NOT display conversions on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on conversions. Defaults to '0'.&lt;br /&gt;
* '''hide_continuities''' - (optional) If set to '1', Offerit will NOT display continuities on the affiliate's stats pages for this offer. This option will not work if this offer pays affiliates on continuities. Defaults to '0'.&lt;br /&gt;
* '''retro_payout''' - (optional) If set to '1', Offerit will pay affiliates the continuity commission set at the time of the conversion. Defaults to '0'.&lt;br /&gt;
&lt;br /&gt;
===Landing Page Settings:===&lt;br /&gt;
* '''landing_page_name''' - (optional) Name of the landing page. Defaults to 'Default Landing Page'.&lt;br /&gt;
* '''linkdomain''' - (optional) URL to use as the tracking domain. Defaults to first tracking domain set up within Offerit.&lt;br /&gt;
* '''description''' - (optional) Landing page description.&lt;br /&gt;
* '''internal_desc''' - (optional) Internal description of landing page that only admins will see. &lt;br /&gt;
* '''approvalpost''' - (optional) URL Offerit will post data to when a conversion occurs. &lt;br /&gt;
&amp;lt;!-- * '''rebillpost''' - (optional) --&amp;gt;&lt;br /&gt;
* '''voidpost''' - (optional) URL Offerit will post data to when a Customer's transaction is voided. &lt;br /&gt;
* '''userpost''' - (optional) URL Offerit will post data to verify the Customer's username is valid.&lt;br /&gt;
* '''change_detailspost''' - (optional) URL Offerit will post data to when a Customer's details are changed. &lt;br /&gt;
* '''void_reversal_post''' - (optional) URL Offerit will post data to when a Customer's voided transaction is reversed. &lt;br /&gt;
* '''pending_approvalpost''' - (optional) URL Offerit will post data to when a pending conversion occurs.&lt;br /&gt;
* '''landing_page_language''' - (optional) Language name the default landing page should be associated with.&lt;br /&gt;
* '''initial_type''' - (optional) Sets conversion amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''initial''' - (optional) Conversion amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''initial_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''rebill_type''' - (optional) Sets continuity amount passed in as either revenue or gross. Set to '1' for Revenue or '2' for Gross. Defaults to '1' Revenue. &lt;br /&gt;
* '''rebill''' - (optional) Continuity amount of transaction if amount is not passed in on the transaction. &lt;br /&gt;
* '''rebill_days''' - (optional) Amount of days the custom will be active for if not passed in on the transaction.&lt;br /&gt;
* '''conversion_type''' - (optional) Method of tracking conversion. Possible values are:&lt;br /&gt;
** '''iframe''' = iframes that allow for advance tracking. Default selected. &lt;br /&gt;
** '''image''' = Image Pixel / HTML&lt;br /&gt;
** '''post''' = Postback. Server to server postback that can be IP protected. &lt;br /&gt;
* '''postback_ips''' - (optional) Comma separated list of IPs that are allowed to post conversions. Only used with postback conversion type.&lt;br /&gt;
* '''private''' - (optional) If set to '1', Offerit will mark offer as private. Private offers must have affiliates manually enrolled to view offer. Defaults to '0'.&lt;br /&gt;
* '''requestable''' - (optional) If set to '1', Offerit will mark offer as requestable. Affiliates will be able to see offer and request permission to use it. Only available with private offers. Defaults to '0'.&lt;br /&gt;
* '''preview_url''' - (optional) URL of offer for affiliates to preview without going through any tracking. &lt;br /&gt;
* '''authorized''' - (optional) List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''unauthorized''' - (optional) List of countries unauthorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
* '''landing_page_thumb''' - (optional) URL of image to save as a thumbnail for the landing page. Defaults to the offer_thumb if set. &lt;br /&gt;
&lt;br /&gt;
===Email Settings:===&lt;br /&gt;
* '''email_from_customer''' - (optional) Default from address for customer E-mails.&lt;br /&gt;
* '''email_from_nice_customer''' - (optional) Default Nice Name for the from address for customer E-mails.&lt;br /&gt;
* '''email_reply_customer''' - (optional) Default reply to address for customer E-mails.&lt;br /&gt;
* '''email_reply_nice_customer''' - (optional) Default Nice Name for the reply to address for customer E-mails.&lt;br /&gt;
* '''email_bcc_to_customer''' - (optional) Default BCC address for customer E-mails.&lt;br /&gt;
* '''email_from_affiliate''' - (optional) Default from address for affiliate E-mails.&lt;br /&gt;
* '''email_from_nice_affiliate''' - (optional) Default Nice Name for the from address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_affiliate''' - (optional) Default reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_reply_nice_affiliate''' - (optional) Default Nice Name for the reply to address for affiliate E-mails.&lt;br /&gt;
* '''email_bcc_to_affiliate''' - (optional) Default BCC address for affiliate E-mails.&lt;br /&gt;
&lt;br /&gt;
== NuSOAP Example ==&lt;br /&gt;
&lt;br /&gt;
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'offer_name' =&amp;gt; &amp;quot;Test Api Offer&amp;quot;,&lt;br /&gt;
	'url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'offer_description' =&amp;gt; 'Offer Description',&lt;br /&gt;
	'date_live' =&amp;gt; '2013-12-01',&lt;br /&gt;
	'date_expire' =&amp;gt; '2013-12-02',&lt;br /&gt;
	'pending' =&amp;gt; '0',&lt;br /&gt;
	'hidden' =&amp;gt; '1',&lt;br /&gt;
	'no_personal_member_info' =&amp;gt; '1',&lt;br /&gt;
	'remove_ocode' =&amp;gt; '1',&lt;br /&gt;
	'admin_threshold_email' =&amp;gt; 'mike.sopko@offerit.com',&lt;br /&gt;
	'mail_threshold' =&amp;gt; 'email subject',&lt;br /&gt;
	'join_hit_threshold_hour_to_6' =&amp;gt; '1:450',&lt;br /&gt;
	'join_hit_threshold_hour_to_12' =&amp;gt; '1:400',&lt;br /&gt;
	'join_hit_threshold_hour_to_18' =&amp;gt; '1:400',&lt;br /&gt;
	'join_hit_threshold_hour_to_24' =&amp;gt; '1:400',&lt;br /&gt;
	'expire_offer' =&amp;gt; '63',&lt;br /&gt;
	'expire_url' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'offer_group_id' =&amp;gt; '1',&lt;br /&gt;
	'marketing_type' =&amp;gt; '1,3',&lt;br /&gt;
	'category' =&amp;gt; '1,2,5,7',&lt;br /&gt;
	'comm_type' =&amp;gt; '201',&lt;br /&gt;
	'flat_amount_per_click' =&amp;gt; '10',&lt;br /&gt;
	'flat_amount_per_visitor' =&amp;gt; '15',&lt;br /&gt;
	'flat_amount_per_conversion' =&amp;gt; '20',&lt;br /&gt;
	'flat_amount_per_continuity' =&amp;gt; '25',&lt;br /&gt;
	'percentage_of_customer_conversion_revenue' =&amp;gt; '30',&lt;br /&gt;
	'percentage_of_customer_continuity_revenue' =&amp;gt; '35',&lt;br /&gt;
	'flat_amount_for_1000_impressions' =&amp;gt; '40',&lt;br /&gt;
	'deduct_voids' =&amp;gt; '0',&lt;br /&gt;
	'hide_continuities' =&amp;gt; '1',&lt;br /&gt;
	'hide_conversions' =&amp;gt; '1',&lt;br /&gt;
	'retro_payout' =&amp;gt; '1',&lt;br /&gt;
	'landing_page_name' =&amp;gt; 'New API Landing Page',&lt;br /&gt;
	'linkdomain' =&amp;gt; 'demo.offerit.com',&lt;br /&gt;
	'description' =&amp;gt; 'Description',&lt;br /&gt;
	'internal_desc' =&amp;gt; 'Only Admins Can See This',&lt;br /&gt;
	'denypost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'approvalpost' =&amp;gt; 'demo.offerit.com/denypost.php',&lt;br /&gt;
	'voidpost' =&amp;gt; 'demo.offerit.com/voidpost.php',&lt;br /&gt;
	'userpost' =&amp;gt; 'demo.offerit.com/userpost.php',&lt;br /&gt;
	'change_detailspost' =&amp;gt; 'demo.offerit.com/change_detailspost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'pending_approvalpost' =&amp;gt; 'demo.offerit.com/pending_approvalpost.php',&lt;br /&gt;
	'void_reversal_post' =&amp;gt; 'demo.offerit.com/void_reversal_post.php',&lt;br /&gt;
	'preview_url' =&amp;gt; 'offerit.com',&lt;br /&gt;
	'landing_page_language' =&amp;gt; 'English',&lt;br /&gt;
	'initial' =&amp;gt; '10.95',&lt;br /&gt;
	'initial_days' =&amp;gt; '20',&lt;br /&gt;
	'rebill' =&amp;gt; '30',&lt;br /&gt;
	'rebill_days' =&amp;gt; '40',&lt;br /&gt;
	'conversion_type' =&amp;gt; 'iframe',&lt;br /&gt;
	'private' =&amp;gt; '1',&lt;br /&gt;
	'requestable' =&amp;gt; '1',&lt;br /&gt;
	'initial_type' =&amp;gt; '1',&lt;br /&gt;
	'rebill_type' =&amp;gt; '1',&lt;br /&gt;
	'postback_ips' =&amp;gt; '127.0.0.1, 1.1.2.1, 123.123.123.123',&lt;br /&gt;
	'authorized' =&amp;gt; 'US,BG,UK',&lt;br /&gt;
	'unauthorized' =&amp;gt; '',&lt;br /&gt;
	'offer_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/about_16.gif',&lt;br /&gt;
	'landing_page_thumb' =&amp;gt; 'http://demo.offerit.com/offerit_images/user_16.gif',&lt;br /&gt;
	'email_from_customer' =&amp;gt; 'customer@offerit.com',&lt;br /&gt;
	'email_from_nice_customer' =&amp;gt; 'Customer Offerit Email',&lt;br /&gt;
	'email_reply_customer' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_customer' =&amp;gt; 'Customer Reply Email',&lt;br /&gt;
	'email_bcc_to_customer' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'email_from_affiliate' =&amp;gt; 'affiliate@offerit.com',&lt;br /&gt;
	'email_from_nice_affiliate' =&amp;gt; 'Affiliate Offerit Email',&lt;br /&gt;
	'email_reply_affiliate' =&amp;gt; 'reply@offerit.com',&lt;br /&gt;
	'email_reply_nice_affiliate' =&amp;gt; 'Affiliate Reply Email',&lt;br /&gt;
	'email_bcc_to_affiliate' =&amp;gt; 'bcc@offerit.com',&lt;br /&gt;
	'advertiserid' =&amp;gt; '46',&lt;br /&gt;
	'affiliate_payout' =&amp;gt; '1',&lt;br /&gt;
	'cost_type' =&amp;gt; 'click',&lt;br /&gt;
	'cost_flat' =&amp;gt; '1',&lt;br /&gt;
	'cost_perc' =&amp;gt; '20',&lt;br /&gt;
);&lt;br /&gt;
$result = $client-&amp;gt;call('api_add_offer', $values, 'offeritapiadmin_wsdl');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sample Output ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
on success:&lt;br /&gt;
	SUCCESS&lt;br /&gt;
   &lt;br /&gt;
on error:&lt;br /&gt;
	ERROR: error message&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Tracking_Domain&amp;diff=2965</id>
		<title>Tracking Domain</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Tracking_Domain&amp;diff=2965"/>
				<updated>2013-03-07T18:10:31Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_setup_section = true&lt;br /&gt;
| show_offers_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Adding a tracking domain is necessary so there is a domain for the linkcodes affiliates will use to promote your offers.  [[Linkcode]]s for your affiliates will appear in the following form:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;nowiki&amp;gt;http://&amp;lt;tracking domain&amp;gt;/track/&amp;lt;offerit_code&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add a tracking domain to Offerit, first navigate to the [[Offerit Offers Admin|The Offers Admin]], then click &amp;quot;''Tracking Domains''&amp;quot; on the left side of the screen.  There are three requirements needed to create a new tracking domain:&lt;br /&gt;
&lt;br /&gt;
[[File:AddNewTrackingDomain.png|800px|Adding a new tracking domain]]&lt;br /&gt;
&lt;br /&gt;
* '''Domain Name''' – The name (URL) you would like to use for this particular domain. This can be a custom domain as long as it points to the domain of your Offerit Install: Point the DNS for your domain, using a CNAME record, at your Offerit domain. For example if your tracking domain is track.example.com and your Offerit domain is example.offerit.com, you would create the following CNAME record in your DNS configuration:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
track.example.com  CNAME  example.offerit.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If you need help with this, please [http://support.offerit.com submit a ticket] and we will be happy to assist you.&lt;br /&gt;
* '''Hide Affiliate Area (Redirect)''' – The URL you would like to use to redirect away from the affiliate area. Leave this blank if you do not want to hide the affiliate area.&lt;br /&gt;
* '''Hide Affiliate Area (Template)''' – Choose whether or not to hide the affiliate area by showing an alternate template.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Hide Affiliate Area&amp;quot; settings can later be altered by clicking on the “Edit Tracking Domain” action icon. When you have finished entering your tracking domain, click &amp;quot;Add&amp;quot;. Once you have set up a Tracking Domain, you will be able to select it to be used for an offer's tracking links when configuring your landing pages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit Affiliate Information]]&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Tracking_Domain&amp;diff=2963</id>
		<title>Tracking Domain</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Tracking_Domain&amp;diff=2963"/>
				<updated>2013-03-06T16:44:25Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_setup_section = true&lt;br /&gt;
| show_offers_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Adding a tracking domain is necessary so there is a domain for the linkcodes affiliates will use to promote your offers.  [[Linkcode]]s for your affiliates will appear in the following form:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;nowiki&amp;gt;http://&amp;lt;tracking domain&amp;gt;/track/&amp;lt;offerit_code&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To add a tracking domain to Offerit, first navigate to the [[Offerit Offers Admin|The Offers Admin]], then click &amp;quot;''Tracking Domains''&amp;quot; on the left side of the screen.  There are three requirements needed to create a new tracking domain:&lt;br /&gt;
&lt;br /&gt;
[[File:AddNewTrackingDomain.png|800px|Adding a new tracking domain]]&lt;br /&gt;
&lt;br /&gt;
* '''Domain Name''' – The name (URL) you would like to use for this particular domain. This can be a custom domain as long as it points to the domain of your Offerit Install: Point the DNS for your domain, using a CNAME record, at your Offerit domain. For example if your tracking domain is track.example.com and your Offerit domain is example.offerit.com, you would create the following CNAME record in your DNS configuration:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
track.example.com  CNAME  example.offerit.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If you need help with this, please [http://support.offerit.com submit a ticket] and we will be happy to assist you.&lt;br /&gt;
* '''Hide Affiliate Area (Redirect)''' – The URL you would like to use to redirect away from the affiliate area. Leave this blank if you do not want to hide the affiliate area.&lt;br /&gt;
* '''Hide Affiliate Area (Template)''' – Choose whether or not to hide the affiliate area by showing an alternate template.&lt;br /&gt;
&lt;br /&gt;
If you are using multiple tracking domains, you can choose one of them to be the default tracking domain for your linkcodes by clicking the &amp;quot;Set Default Tracking Domain&amp;quot; action icon. Any of these settings can later be altered by clicking on the “Editing Tracking Domain” action icon. When you have finished entering your tracking domain, click &amp;quot;Add&amp;quot;. Once you have set up a Tracking Domain, you will be able to select it for your landing pages when adding an offer or landing page. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit Affiliate Information]]&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API&amp;diff=2962</id>
		<title>Offerit API</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API&amp;diff=2962"/>
				<updated>2013-03-01T14:33:18Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Authentication */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
The Offerit API is accessible at http://&amp;lt;domain&amp;gt;/admin_api.php&lt;br /&gt;
*Replace &amp;lt;domain&amp;gt; with your Offerit install domain name.&lt;br /&gt;
&lt;br /&gt;
== Gaining Access to the Admin API ==&lt;br /&gt;
In order to access Offerit API, your IP address must be in the ADMIN_API_ALLOWED_IPS list.  You can add or remove IP addresses to this list via the Configurations Admin under the &amp;quot;Security&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
If you're also using ADMIN_IPS to restrict access to your admin, you must also add the IP to that list, as this is also an admin page.&lt;br /&gt;
&lt;br /&gt;
== Authentication ==&lt;br /&gt;
The Offerit API uses HTTP Authentication where the username is the Affiliate username and the password is the Affiliate API key.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Affiliates do not start with an API key and you will have to manually create one for each affiliate that wants access to the API.  In addition, API access is only available to admin-level affiliates.''&lt;br /&gt;
&lt;br /&gt;
To retrieve an API key for an affiliate, go to the Affiliates admin and click &amp;quot;View/Change API Key&amp;quot;.  On the next page, you can create an API key for the user you clicked on by clicking &amp;quot;Generate API Key&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The easiest way to use SOAP when using PHP is using the [http://sourceforge.net/projects/nusoap/ NuSOAP Toolkit]. Assuming you've downloaded the toolkit into a directory called nusoap, here is an example of how to connect:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
require_once('nusoap/lib/nusoap.php');&lt;br /&gt;
&lt;br /&gt;
$url = 'http://offerit.site.com/admin_api.php'; // change to be the domain of your Offerit install&lt;br /&gt;
$username = 'OFFERITADMIN'; // your admin username&lt;br /&gt;
$apikey = 'afsb35gh8j3rgasfdgja9r8ebja59gb8'; // your api key&lt;br /&gt;
&lt;br /&gt;
$client = new nusoap_client($url.'?wsdl', true);&lt;br /&gt;
$client-&amp;gt;setCredentials($username,$apikey);&lt;br /&gt;
// Check for an error&lt;br /&gt;
$err = $client-&amp;gt;getError();&lt;br /&gt;
if ($err) {&lt;br /&gt;
    // Display the error&lt;br /&gt;
    echo 'Constructor error' . $err . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    exit; // At this point, you know the call that follows will fail&lt;br /&gt;
    &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To give a complete example of this, here's an example using the [[Offerit_API_Ping|Ping]] function. This is how to call it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
require_once('nusoap/lib/nusoap.php');&lt;br /&gt;
&lt;br /&gt;
$url = 'http://offerit.site.com/admin_api.php'; // change to be the domain of your Offerit install&lt;br /&gt;
$username = 'offeritadmin'; // your admin username&lt;br /&gt;
$apikey = 'afsb35gh8j3rgasfdgja9r8ebja59gb8'; // your api key&lt;br /&gt;
&lt;br /&gt;
$client = new nusoap_client($url.'?wsdl', true);&lt;br /&gt;
$client-&amp;gt;setCredentials($username,$apikey);&lt;br /&gt;
// Check for an error&lt;br /&gt;
$err = $client-&amp;gt;getError();&lt;br /&gt;
if ($err) {&lt;br /&gt;
    // Display the error&lt;br /&gt;
    echo 'Constructor error' . $err . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    exit; // At this point, you know the call that follows will fail&lt;br /&gt;
    &lt;br /&gt;
}&lt;br /&gt;
$result = $client-&amp;gt;call('ping', Array(), 'natsapiadmin_wsdl');&lt;br /&gt;
var_dump($result);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this is the output:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bool(true)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API&amp;diff=2961</id>
		<title>Offerit API</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API&amp;diff=2961"/>
				<updated>2013-03-01T14:32:28Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: /* Authentication */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_api_admin_section = true&lt;br /&gt;
}}&lt;br /&gt;
The Offerit API is accessible at http://&amp;lt;domain&amp;gt;/admin_api.php&lt;br /&gt;
*Replace &amp;lt;domain&amp;gt; with your Offerit install domain name.&lt;br /&gt;
&lt;br /&gt;
== Gaining Access to the Admin API ==&lt;br /&gt;
In order to access Offerit API, your IP address must be in the ADMIN_API_ALLOWED_IPS list.  You can add or remove IP addresses to this list via the Configurations Admin under the &amp;quot;Security&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
If you're also using ADMIN_IPS to restrict access to your admin, you must also add the IP to that list, as this is also an admin page.&lt;br /&gt;
&lt;br /&gt;
== Authentication ==&lt;br /&gt;
The Offerit API uses HTTP Authentication where the username is the Affiliate username and the password is the Affiliate API key.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Affiliates do not start with an API key and you will have to manually create one for each affiliate that wants access to the API.  In addition, API access is only available to admin-level Offerit users.''&lt;br /&gt;
&lt;br /&gt;
To retrieve an API key for an affiliate, go to the Affiliates admin and click &amp;quot;View/Change API Key&amp;quot;.  On the next page, you can create an API key for the user you clicked on by clicking &amp;quot;Generate API Key&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
The easiest way to use SOAP when using PHP is using the [http://sourceforge.net/projects/nusoap/ NuSOAP Toolkit]. Assuming you've downloaded the toolkit into a directory called nusoap, here is an example of how to connect:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
require_once('nusoap/lib/nusoap.php');&lt;br /&gt;
&lt;br /&gt;
$url = 'http://offerit.site.com/admin_api.php'; // change to be the domain of your Offerit install&lt;br /&gt;
$username = 'OFFERITADMIN'; // your admin username&lt;br /&gt;
$apikey = 'afsb35gh8j3rgasfdgja9r8ebja59gb8'; // your api key&lt;br /&gt;
&lt;br /&gt;
$client = new nusoap_client($url.'?wsdl', true);&lt;br /&gt;
$client-&amp;gt;setCredentials($username,$apikey);&lt;br /&gt;
// Check for an error&lt;br /&gt;
$err = $client-&amp;gt;getError();&lt;br /&gt;
if ($err) {&lt;br /&gt;
    // Display the error&lt;br /&gt;
    echo 'Constructor error' . $err . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    exit; // At this point, you know the call that follows will fail&lt;br /&gt;
    &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To give a complete example of this, here's an example using the [[Offerit_API_Ping|Ping]] function. This is how to call it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
require_once('nusoap/lib/nusoap.php');&lt;br /&gt;
&lt;br /&gt;
$url = 'http://offerit.site.com/admin_api.php'; // change to be the domain of your Offerit install&lt;br /&gt;
$username = 'offeritadmin'; // your admin username&lt;br /&gt;
$apikey = 'afsb35gh8j3rgasfdgja9r8ebja59gb8'; // your api key&lt;br /&gt;
&lt;br /&gt;
$client = new nusoap_client($url.'?wsdl', true);&lt;br /&gt;
$client-&amp;gt;setCredentials($username,$apikey);&lt;br /&gt;
// Check for an error&lt;br /&gt;
$err = $client-&amp;gt;getError();&lt;br /&gt;
if ($err) {&lt;br /&gt;
    // Display the error&lt;br /&gt;
    echo 'Constructor error' . $err . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    exit; // At this point, you know the call that follows will fail&lt;br /&gt;
    &lt;br /&gt;
}&lt;br /&gt;
$result = $client-&amp;gt;call('ping', Array(), 'natsapiadmin_wsdl');&lt;br /&gt;
var_dump($result);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this is the output:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bool(true)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Payza&amp;diff=2941</id>
		<title>Payza</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Payza&amp;diff=2941"/>
				<updated>2013-02-07T18:45:18Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_payment_methods_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Offerit]] supports [[Common Terms#Payment Dumps|payment dumps]] for [https://www.payza.com/ Payza] accounts. This allows you to pay affiliates for referrals they have made by simply depositing the sum they are owed into their Payza account. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Enabling Payza ==&lt;br /&gt;
&lt;br /&gt;
To enable Payza as a payment method for your [[ct#Affiliate|affiliates]], go to your [[Offerit Payments Admin|Payments Admin]] and in the [[Pay Via Types|Pay Via type]] section you will see Payza as an available option.&lt;br /&gt;
&lt;br /&gt;
'''Note: If Payza is not available as a possible payment method.  Please [{{ts}} submit a ticket] asking us to add it to your program.'''&lt;br /&gt;
&lt;br /&gt;
In the Payza row, click on the green arrow labeled, &amp;quot;Enable Payza by Default&amp;quot;, to enable this payment method for all of your affiliates.&lt;br /&gt;
&lt;br /&gt;
Your [[ct#Affiliate|affiliates]] will now be able to enter their Payza account information and change their payment type to Payza.&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=2940</id>
		<title>Template:Offerit Manual</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=2940"/>
				<updated>2013-02-07T18:44:48Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitJames: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;offeritnavbox&amp;quot;&lt;br /&gt;
! &amp;lt;span class=&amp;quot;productname&amp;quot;&amp;gt;[[Offerit|Offerit]]&amp;lt;/span&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_for_affiliates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | For Affiliates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Automatic SubIDs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Stats Dumps|Affiliate Stats Dumps]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Linkcode|Linkcode]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[ASP Query String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Main Payout Page|Main Payout Page]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliate_area_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
 ! class=&amp;quot;i1&amp;quot; | Offerit Affiliate Area&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Affiliate Area|Offerit Affiliate Area]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
    | [[Affiliate Account Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Account Change Log]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Creatives|Affiliate Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Creatives Search]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Custom Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Display Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Linkcode Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Login History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Overview]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Overview Key Statistics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Overview Statistics Summary]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Payment History]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Quick Links]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referrals Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referring URL Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Remote Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Signup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Filters]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Statistic Views]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate SubIDs]]&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Email and Notification Settings]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Skins and Languages]] --&amp;gt;&lt;br /&gt;
    &amp;lt;!-- | [[Affiliate Bonus Rewards]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_setup_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offerit Setup&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Post-Installation Steps|Post-Installation Steps]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Tracking Domain|Tracking Domain]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Getting Started Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Quick-Start Guide]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_admin_overview_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Admin Overview&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Overview|The Admin Overview]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_reporting_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Reporting Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Reporting Admin|The Reporting Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack|Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Fraud|Fraud Reports]]&lt;br /&gt;
    |- --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_report_breakdowns_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Report Breakdowns&lt;br /&gt;
    |-    &lt;br /&gt;
    | [[Profit and Loss Report|The Profit and Loss Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Subscription Report|The Subscription Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Transactions Report|The Transactions Reports]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Fraud Report|The Fraud Report]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Ratios Report|The Affiliate Ratios Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Reps Report|The Account Reps Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Surfer Actions Report|The Surfer Actions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Tier Commissions Report|The Affiliate Referral Tier Commissions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Referral Signup Commissions Report|The Affiliate Referral Signup Commissions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Additional Commissions Report|The Additional Commissions Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Graphical Affiliate Comparison Report|The Graphical Affiliate Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Single Day Comparison Report|The Single Day Comparison Report]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Actual Affiliate Payments|The Actual Affiliate Payments Report]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Payments Withheld Report|The Payments Withheld Report]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_offers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Offers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers Admin|The Offers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offers|Offers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer Setup]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Tracking Domain|Tracking Domains]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission|Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Suppression Lists]]&lt;br /&gt;
    |-&lt;br /&gt;
    &amp;lt;!-- | [[Offerit Post URLs Usage|Post URL Usage]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URLs|Post URLs in Offerit]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mobile Landing Pages|Mobile Landing Pages]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Offer Partner|Offer Partner]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Offer User Management|Offer User Management]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offer/Landing Page Redirection]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_affiliates_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Affiliates Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliates Admin|The Affiliates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Account Representatives|Account Representatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Managers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Referrals|Affiliate Referrals]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Activation|Affiliate Activation]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin-Only Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Override|Affiliate Overrides]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Creating Admin Accounts|Creating Admin Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[In House Accounts|In-House Accounts]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Add Manual Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Manual Invoice|Manual Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Documents|Affiliate Documents]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Affiliate Status]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_advertisers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Advertisers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertisers Admin|The Advertisers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Account Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Invoices]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Generate Invoice]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Advertiser Approval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Change Advertiser Status]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_customers_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Customers Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Customers Admin|The Customers Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add Customer|Manually Adding a Customer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_commissions_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Commissions Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Commissions Admin|The Commissions Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding Commissions|Adding Commissions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission Changes|Commission Changes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[ID Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Commission]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Special Pricing Options|Special Pricing Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payments_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payments Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payments Admin|The Payments Admin]]  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payout Periods]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payvia Dump Formats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payment Dump Entry Numbers |Payment Dump Entry Numbers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Payment Dump Variables|Payment Dump Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Check Functions|Check Functions]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_payment_methods_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; |Payment Methods&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Payza|Payza]] &lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creatives_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Creatives Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creatives Admin|The Creatives Admin]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Duplicating Creative Types|Duplicating Creative Types]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creatives|Add New Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add New Creative Type|Add New Creative Type]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
   &amp;lt;!-- |-&lt;br /&gt;
    | [[Bulk Import Creatives]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative_Templates|Creative Templates]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Code Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Track and Strack]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_creative_types_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Default Creative Types  &lt;br /&gt;
    |-&lt;br /&gt;
    | [[Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Image Banners|Image Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Flash Banners|Flash Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Dynamic Text Banners|Dynamic Text Banners]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Feeds|Feeds]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailers|Mailers]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Downloadable Videos|Video Download]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Embedded Videos|Video Embed]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Peels|Page Peels]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IM Popups|IM Popups]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Footer Ads|Footer Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Page Ads|Page Ads]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Overlays|Overlays]]&lt;br /&gt;
    |-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_mailing_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Mailing Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Admin|The Mailing Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Create New Mailer|Create New Mailer]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailing Queue|The Mailing Queue]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mailer Template Variables|Mailer Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Mass Mailer Template Variables|Mass Mailing Template Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit_common_mailer_examples|Common Mailer Examples]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Setting Rules]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_communications_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Communications Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Communications Admin|The Communications Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Add News|Add News Item]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Send Message|Sending Messages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Signup Questions]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_configuration_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Configuration Admin&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Configuration Admin|The Configuration Admin]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Fraud|Fraud Configuration]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Postback URL|Affiliate Signup Postback URL]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Edit CSS Colors]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit Log Admin Activity|Log Admin Activity]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit IP Address Filtering|IP Address Filtering]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Email Configuration|Email Configuration]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Postback|Affiliate Postback]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Analytics]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Throttling]] --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_skins_and_templates_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | &amp;amp;nbsp; Skins and Templates&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins and Templates Admin|The Skins and Templates Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Skins|Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty Plugins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Templates|Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Site Templates|Site Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Language Skins|Language Skins]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Language Files]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit custom errors.php|custom_errors.php]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Join Page Variables|Join Page Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Post URL Variables|Post URL Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Customer Usernames &amp;amp; Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Username Recommendations|Username Recommendations]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Password Retrieval|Password Retrieval]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Post-Biller Templates]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Geo-Target Join Options|Geo-Target Join Options]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Random Usernames and Passwords]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Smarty print array]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Support Template|Affiliate Support Template]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Adding a Verification Image|Adding a Verification Image]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Custom Commission and Campaign Selection Pages|Custom Commission and Campaign Selection Pages]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Output An Affiliate's Last Paid Date|Output An Affiliate's Last Paid Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Affiliate Signup Email|Affiliate Signup Email]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Affiliate Join Page Linkcodes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Approval/Upgrade/Denial Variables]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CSS Theme Builder]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_api_admin_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | API&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API|API]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate|Add Affiliate]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Add Affiliate Sale|Add Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Approve Transaction|Approve Transaction]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Admin Get Creatives|Admin Get Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Creative Types|Creative Types]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Decode Offeritcode|Decode Offeritcode]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Deny Transaction|Deny Transaction]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Disable Affiliate Landing Page|Disable Affiliate Landing Page]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Edit Affiliate Sale|Edit Affiliate Sale]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Enable Affiliate Landing Page|Enable Affiliate Landing Page]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Creative Categories|Creative Categories]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Stats|Get Affiliate Stats]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Landing Page Details|Get Landing Page Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Offer Details|Get Offer Details]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Affiliate Get Traffic Tags|Affiliate Get Traffic Tags]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Tracking Codes|Get Affiliate Tracking Codes]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Affiliate Sales|Get Affiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Subaffiliate Sales|Get Subaffiliate Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Details|Get Customer Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Instant Upgrade String|Get Customer Instant Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Package Upgrade String|Get Customer Package Upgrade String]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Get Customer Upsell String|Get Customer Upsell String]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Details|List Affiliate Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API List Affiliate Subaffiliates|List Affiliate Subaffiliates]]&lt;br /&gt;
    |- &lt;br /&gt;
    | [[Offerit API Ping|Ping]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Send Email|Send Email]]&lt;br /&gt;
    &amp;lt;!-- |- &lt;br /&gt;
    | [[Offerit API Set Affiliate Defaults|Set Affiliate Defaults]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Admin Settings|Set Affiliate Admin Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Customs|Set Affiliate Customs]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Status|Set Affiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Information|Set Affiliate Information]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Affiliate Settings|Set Affiliate Settings]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Customer Details|Set Customer Details]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Subaffiliate Status|Set SubAffiliate Status]]&lt;br /&gt;
    &amp;lt;!-- |-&lt;br /&gt;
    | [[API Bulk Import Creatives|Bulk Import Creatives]] --&amp;gt;&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Set Member Details|Set Member Details]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit API Record Affiliate Click|Record Affiliate Click]]&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;collapsible {{{show_misc_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Misc.&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Rules|Rules]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Freeform Date|Freeform Date]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Rewards Admin|Rewards Admin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offeritcode]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr /&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_troubleshooting_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | Troubleshooting&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Common Errors|Common Errors]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Fix Graphs|Fix Graphs]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Auto Login]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[AutoLogin Cookie]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Expired License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zend License]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[CAPTCHA]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Zip Files in Internet Explorer]]&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
&amp;lt;!-- {| class=&amp;quot;collapsible {{{show_extras_section|collapsed}}}&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
    ! class=&amp;quot;i1&amp;quot; | offerit Extras&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offeritid]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Remote Affiliate Authentication|Remote Affiliate Authentication]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Offerit Shopping Cart Sales|Shopping Cart Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Moving Landing Pages, Customers' Area, and Galleries]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Admin Areas]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Extended Sales]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[offerit Code Wordpress Plugin]]&lt;br /&gt;
    |-&lt;br /&gt;
    | [[Error_message_display]]&lt;br /&gt;
    |-&lt;br /&gt;
|} --&amp;gt;&lt;br /&gt;
|}&amp;lt;includeonly&amp;gt;[[Category:Offerit]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitJames</name></author>	</entry>

	</feed>