<?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=OfferitSopko</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=OfferitSopko"/>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Special:Contributions/OfferitSopko"/>
		<updated>2026-06-14T18:48:57Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.5</generator>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Get_Profit_Loss_Report&amp;diff=3361</id>
		<title>Offerit API Get Profit Loss Report</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Get_Profit_Loss_Report&amp;diff=3361"/>
				<updated>2013-10-01T14:21:53Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: &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 functions allows for you to grab all the details for the profit and loss report remotely. The get_profit_loss_report accepts the following parameters:&lt;br /&gt;
&lt;br /&gt;
*'''view''' - The breakdown of the report to display. The possible options are:&lt;br /&gt;
**'''period'''&lt;br /&gt;
**'''month'''&lt;br /&gt;
**'''year'''&lt;br /&gt;
**'''offer_group'''&lt;br /&gt;
**'''landing_page'''&lt;br /&gt;
**'''offer'''&lt;br /&gt;
**'''subid1'''&lt;br /&gt;
**'''subid2'''&lt;br /&gt;
**'''login'''&lt;br /&gt;
**'''adtool'''&lt;br /&gt;
**'''demographic'''&lt;br /&gt;
*'''params''' - Parameters for the report. Must be an array and may contain any of the following:&lt;br /&gt;
**'''period''' - Which period of time to select data for. The following are the allowed periods parameters for Offerit:&lt;br /&gt;
***'''0''' - Current Period&lt;br /&gt;
***'''1''' - Last Period&lt;br /&gt;
***'''2''' - Today&lt;br /&gt;
***'''3''' - Yesterday&lt;br /&gt;
***'''4''' - Past Week&lt;br /&gt;
***'''5''' - Past Month&lt;br /&gt;
***'''6''' - Past Year&lt;br /&gt;
***'''7''' - All Time&lt;br /&gt;
***'''8''' - [[Offerit_Freeform_Date|Free Form Date ]]&lt;br /&gt;
**'''start''' - [[Offerit_Freeform_Date|Free Form]] start date for stats. Used when period is not sent or set to 8&lt;br /&gt;
**'''end''' - [[Offerit_Freeform_Date|Free Form]] end date for stats. Used when period is not sent or set to 8&lt;br /&gt;
**'''acct_rep''' - View the profit and loss report as an account rep. Will only see stats for the affiliates assigned to the account rep. &lt;br /&gt;
**'''filter_loginid''' - Only see stats for the specific login ID passed in. &lt;br /&gt;
**'''filter_campaignid''' - Only see stats for the specific campaign ID for the affiliate. This parameter can only be used if filter_loginid is passed in. &lt;br /&gt;
**'''filter_offerid''' - Only see stats for the specific Offer ID passed in. &lt;br /&gt;
**'''filter_landing_pageid''' - Only see stats for the specific Landing Page ID passed in. &lt;br /&gt;
**'''filter_adtoolid''' - Only see stats for the specific Creative ID passed in. &lt;br /&gt;
**'''filter_offeritcode''' - Breakdown the Offerit code and only view stats associated with the Offerit code. &lt;br /&gt;
**'''no_inhouse''' - Remove in-house traffic from the returned report. &lt;br /&gt;
**'''no_typein''' - Remove type-in traffic from the returned report. &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;
$function = 'get_profit_loss_report';&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'view' =&amp;gt; 'year',&lt;br /&gt;
	'params' =&amp;gt; Array(&lt;br /&gt;
		'period' =&amp;gt; 7,&lt;br /&gt;
	),&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$result = $client-&amp;gt;call($function, $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;
    [total] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [breakdown] =&amp;gt; year&lt;br /&gt;
            [row] =&amp;gt; Array&lt;br /&gt;
                (&lt;br /&gt;
                    [page_view] =&amp;gt; 18994&lt;br /&gt;
                    [unique_visitor] =&amp;gt; 7970&lt;br /&gt;
                    [conversion] =&amp;gt; 783&lt;br /&gt;
                    [conversion_amount] =&amp;gt; 2722318&lt;br /&gt;
                    [advertiser_initial] =&amp;gt; 6&lt;br /&gt;
                    [advertiser_initial_amount] =&amp;gt; 9000&lt;br /&gt;
                    [phone_call] =&amp;gt; 0&lt;br /&gt;
                    [phone_call_amount] =&amp;gt; 0&lt;br /&gt;
                    [phone_conversion] =&amp;gt; 0&lt;br /&gt;
                    [phone_conversion_amount] =&amp;gt; 0&lt;br /&gt;
                    [affiliate_referral_join] =&amp;gt; 58&lt;br /&gt;
                    [continuity] =&amp;gt; 90&lt;br /&gt;
                    [continuity_amount] =&amp;gt; 240066&lt;br /&gt;
                    [advertiser_income_amount] =&amp;gt; 4600&lt;br /&gt;
                    [void] =&amp;gt; 154&lt;br /&gt;
                    [void_amount] =&amp;gt; -147406&lt;br /&gt;
                    [chargeback] =&amp;gt; 21&lt;br /&gt;
                    [chargeback_amount] =&amp;gt; -5700&lt;br /&gt;
                    [void_reversal] =&amp;gt; 72&lt;br /&gt;
                    [void_reversal_amount] =&amp;gt; 75816&lt;br /&gt;
                    [chargeback_reversal] =&amp;gt; 1&lt;br /&gt;
                    [chargeback_reversal_amount] =&amp;gt; 428&lt;br /&gt;
                    [affiliate_payout] =&amp;gt; 3464990&lt;br /&gt;
                    [referral_join] =&amp;gt; 0&lt;br /&gt;
                    [referral_payout] =&amp;gt; 104802&lt;br /&gt;
                    [affiliate_manager_payout] =&amp;gt; 286034&lt;br /&gt;
                    [partner_payout] =&amp;gt; -80080&lt;br /&gt;
                    [tier_adjustment_payout] =&amp;gt; 0&lt;br /&gt;
                    [correction_payout] =&amp;gt; 0&lt;br /&gt;
                )&lt;br /&gt;
&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
    [rows] =&amp;gt; Array&lt;br /&gt;
        (&lt;br /&gt;
            [0] =&amp;gt; Array&lt;br /&gt;
                (&lt;br /&gt;
                    [break] =&amp;gt; 1325394000&lt;br /&gt;
                    [stats] =&amp;gt; Array&lt;br /&gt;
                        (&lt;br /&gt;
                            [void] =&amp;gt; 12&lt;br /&gt;
                            [void_amount] =&amp;gt; -50200&lt;br /&gt;
                            [chargeback] =&amp;gt; 0&lt;br /&gt;
                            [chargeback_amount] =&amp;gt; 0&lt;br /&gt;
                            [void_reversal] =&amp;gt; 12&lt;br /&gt;
                            [void_reversal_amount] =&amp;gt; 50200&lt;br /&gt;
                            [chargeback_reversal] =&amp;gt; 0&lt;br /&gt;
                            [chargeback_reversal_amount] =&amp;gt; 0&lt;br /&gt;
                            [affiliate_payout] =&amp;gt; 485237&lt;br /&gt;
                            [referral_payout] =&amp;gt; 67686&lt;br /&gt;
                            [partner_payout] =&amp;gt; -50000&lt;br /&gt;
                            [advertiser_income_amount] =&amp;gt; 500&lt;br /&gt;
                            [name] =&amp;gt; 1325394000&lt;br /&gt;
                            [advertiser_initial] =&amp;gt; 0&lt;br /&gt;
                            [advertiser_initial_amount] =&amp;gt; 0&lt;br /&gt;
                            [phone_call] =&amp;gt; 0&lt;br /&gt;
                            [phone_call_amount] =&amp;gt; 0&lt;br /&gt;
                            [phone_conversion] =&amp;gt; 0&lt;br /&gt;
                            [phone_conversion_amount] =&amp;gt; 0&lt;br /&gt;
                            [tier_adjustment_payout] =&amp;gt; 0&lt;br /&gt;
                            [correction_payout] =&amp;gt; 0&lt;br /&gt;
                            [page_view] =&amp;gt; 13599&lt;br /&gt;
                            [unique_visitor] =&amp;gt; 5988&lt;br /&gt;
                            [conversion] =&amp;gt; 232&lt;br /&gt;
                            [conversion_amount] =&amp;gt; 1780000&lt;br /&gt;
                            [affiliate_referral_join] =&amp;gt; 40&lt;br /&gt;
                            [continuity] =&amp;gt; 46&lt;br /&gt;
                            [continuity_amount] =&amp;gt; 235000&lt;br /&gt;
                            [referral_join] =&amp;gt; 0&lt;br /&gt;
                            [affiliate_manager_payout] =&amp;gt; 177450&lt;br /&gt;
                        )&lt;br /&gt;
&lt;br /&gt;
                )&lt;br /&gt;
&lt;br /&gt;
            [1] =&amp;gt; Array&lt;br /&gt;
                (&lt;br /&gt;
                    [break] =&amp;gt; 1357016400&lt;br /&gt;
                    [stats] =&amp;gt; Array&lt;br /&gt;
                        (&lt;br /&gt;
                            [void] =&amp;gt; 142&lt;br /&gt;
                            [void_amount] =&amp;gt; -97206&lt;br /&gt;
                            [chargeback] =&amp;gt; 21&lt;br /&gt;
                            [chargeback_amount] =&amp;gt; -5700&lt;br /&gt;
                            [void_reversal] =&amp;gt; 60&lt;br /&gt;
                            [void_reversal_amount] =&amp;gt; 25616&lt;br /&gt;
                            [chargeback_reversal] =&amp;gt; 1&lt;br /&gt;
                            [chargeback_reversal_amount] =&amp;gt; 428&lt;br /&gt;
                            [affiliate_payout] =&amp;gt; 2979753&lt;br /&gt;
                            [referral_payout] =&amp;gt; 37116&lt;br /&gt;
                            [partner_payout] =&amp;gt; -30080&lt;br /&gt;
                            [advertiser_income_amount] =&amp;gt; 4100&lt;br /&gt;
                            [advertiser_initial] =&amp;gt; 6&lt;br /&gt;
                            [advertiser_initial_amount] =&amp;gt; 9000&lt;br /&gt;
                            [name] =&amp;gt; 1357016400&lt;br /&gt;
                            [phone_call] =&amp;gt; 0&lt;br /&gt;
                            [phone_call_amount] =&amp;gt; 0&lt;br /&gt;
                            [phone_conversion] =&amp;gt; 0&lt;br /&gt;
                            [phone_conversion_amount] =&amp;gt; 0&lt;br /&gt;
                            [tier_adjustment_payout] =&amp;gt; 0&lt;br /&gt;
                            [correction_payout] =&amp;gt; 0&lt;br /&gt;
                            [page_view] =&amp;gt; 5395&lt;br /&gt;
                            [unique_visitor] =&amp;gt; 1982&lt;br /&gt;
                            [conversion] =&amp;gt; 551&lt;br /&gt;
                            [conversion_amount] =&amp;gt; 942318&lt;br /&gt;
                            [affiliate_referral_join] =&amp;gt; 18&lt;br /&gt;
                            [continuity] =&amp;gt; 44&lt;br /&gt;
                            [continuity_amount] =&amp;gt; 5066&lt;br /&gt;
                            [referral_join] =&amp;gt; 0&lt;br /&gt;
                            [affiliate_manager_payout] =&amp;gt; 108584&lt;br /&gt;
                        )&lt;br /&gt;
&lt;br /&gt;
                )&lt;br /&gt;
&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3360</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=3360"/>
				<updated>2013-09-25T19:41:56Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: &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;
    &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;
{| 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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3359</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=3359"/>
				<updated>2013-09-25T19:34:56Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Landing Page 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''' - The Offerit Category for this offer.&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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3358</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=3358"/>
				<updated>2013-09-25T19:31:17Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Import Example */&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''' - The Offerit Category for this offer.&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''' -  List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
*'''Unauthorized''' -   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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3357</id>
		<title>File:OfferBulkImport.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3357"/>
				<updated>2013-09-25T19:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:OfferBulkImport.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3356</id>
		<title>File:OfferBulkImport.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3356"/>
				<updated>2013-09-25T19:25:32Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:OfferBulkImport.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Get_Allowed_Affiliates&amp;diff=3349</id>
		<title>Offerit API Get Allowed Affiliates</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Get_Allowed_Affiliates&amp;diff=3349"/>
				<updated>2013-09-20T14:24:58Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: &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 the list of enabled, disabled and unassigned affiliates for a landing page. You can also pass in an offer ID to see the same information for all the landing pages from an Offer. &lt;br /&gt;
&lt;br /&gt;
*'''offerid''' - The offer ID or a comma separated list of Offer IDs. Offerit will display all the landing pages for the offer and display the allowed affiliates. &lt;br /&gt;
*'''landing_pageid''' - The landing page ID or comma separated list of landing page IDs to display the allowed affiliates for. &lt;br /&gt;
&lt;br /&gt;
=Output Fields=&lt;br /&gt;
*'''message'''  Either 'SUCCESS' for a successful call or 'ERROR:' with an error message about the call. The following error messages are available:&lt;br /&gt;
** ERROR: Landing page ID and/or Offer ID were invalid.&lt;br /&gt;
** ERROR: Landing page ID and/or Offer ID do not exist.&lt;br /&gt;
&lt;br /&gt;
*'''return'''  An array of data containing the following information&lt;br /&gt;
**'''landing_pageid'''  The landing page ID&lt;br /&gt;
**'''private'''  Either public or private describing the offer availability for unassigned affiliates.&lt;br /&gt;
**'''enabled_affiliates'''  List of affiliates with their loginid and username that are enabled to use this offer.&lt;br /&gt;
**'''disabled_affiliates'''  List of affiliates with their loginid and username that are disabled to use this offer.&lt;br /&gt;
**'''unassigned_affiliates'''  List of affiliates with their loginid and username that are unassigned to use this offer.&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;
$function = 'api_get_allowed_affiliates';&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'landing_pageid' =&amp;gt; '350,351',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$result = $client-&amp;gt;call($function, $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;
    [message] =&amp;gt; SUCCESS&lt;br /&gt;
	&lt;br /&gt;
    [return] =&amp;gt; Array (&lt;br /&gt;
		[0] =&amp;gt; Array (&lt;br /&gt;
			[landing_pageid] =&amp;gt; 350&lt;br /&gt;
			[private] =&amp;gt; public&lt;br /&gt;
			&lt;br /&gt;
			[enabled_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 1&lt;br /&gt;
					[username] =&amp;gt; stagingadmin&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
&lt;br /&gt;
			[disabled_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 70&lt;br /&gt;
					[username] =&amp;gt; daveadmin&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
&lt;br /&gt;
			[unassigned_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 4&lt;br /&gt;
					[username] =&amp;gt; offeritconk2&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[1] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 5&lt;br /&gt;
					[username] =&amp;gt; identtest&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[2] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 7&lt;br /&gt;
					[username] =&amp;gt; identid3&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
		)&lt;br /&gt;
&lt;br /&gt;
		[1] =&amp;gt; Array (&lt;br /&gt;
			[landing_pageid] =&amp;gt; 351&lt;br /&gt;
			[private] =&amp;gt; private&lt;br /&gt;
			[enabled_affiliates] =&amp;gt; Array ()&lt;br /&gt;
			[disabled_affiliates] =&amp;gt; Array ()&lt;br /&gt;
&lt;br /&gt;
			[unassigned_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 1&lt;br /&gt;
					[username] =&amp;gt; stagingadmin&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[1] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 4&lt;br /&gt;
					[username] =&amp;gt; offeritconk2&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[2] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 5&lt;br /&gt;
					[username] =&amp;gt; identtest&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
		)&lt;br /&gt;
	)&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3348</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=3348"/>
				<updated>2013-09-20T13:24:55Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: &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;
    &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;
{| 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 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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Get_Profit_Loss_Report&amp;diff=3347</id>
		<title>Offerit API Get Profit Loss Report</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Get_Profit_Loss_Report&amp;diff=3347"/>
				<updated>2013-09-20T13:21:34Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: Created page with &amp;quot;{{Offerit Manual | show_api_admin_section = true }}  This functions allows for you to grab all the details for the profit and loss report remotely. The get_profit_loss_report acc...&amp;quot;&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 functions allows for you to grab all the details for the profit and loss report remotely. The get_profit_loss_report accepts the following parameters:&lt;br /&gt;
&lt;br /&gt;
*'''view''' - The breakdown of the report to display. The possible options are:&lt;br /&gt;
**'''period'''&lt;br /&gt;
**'''month'''&lt;br /&gt;
**'''year'''&lt;br /&gt;
**'''offer_group'''&lt;br /&gt;
**'''landing_page'''&lt;br /&gt;
**'''offer'''&lt;br /&gt;
**'''subid1'''&lt;br /&gt;
**'''subid2'''&lt;br /&gt;
**'''login'''&lt;br /&gt;
**'''adtool'''&lt;br /&gt;
**'''demographic'''&lt;br /&gt;
*'''params''' - Parameters for the report. Must be an array and may contain any of the following:&lt;br /&gt;
**'''period''' - Which period of time to select data for. The following are the allowed periods parameters for Offerit:&lt;br /&gt;
***'''0''' - Current Period&lt;br /&gt;
***'''1''' - Last Period&lt;br /&gt;
***'''2''' - Today&lt;br /&gt;
***'''3''' - Yesterday&lt;br /&gt;
***'''4''' - Past Week&lt;br /&gt;
***'''5''' - Past Month&lt;br /&gt;
***'''6''' - Past Year&lt;br /&gt;
***'''7''' - All Time&lt;br /&gt;
***'''8''' - [[Offerit_Freeform_Date|Free Form Date ]]&lt;br /&gt;
**'''start''' - [[Offerit_Freeform_Date|Free Form]] start date for stats. Used when period is not sent or set to 8&lt;br /&gt;
**'''end''' - [[Offerit_Freeform_Date|Free Form]] end date for stats. Used when period is not sent or set to 8&lt;br /&gt;
**'''acct_rep''' - View the profit and loss report as an account rep. Will only see stats for the affiliates assigned to the account rep. &lt;br /&gt;
**'''filter_loginid''' - Only see stats for the specific login ID passed in. &lt;br /&gt;
**'''filter_campaignid''' - Only see stats for the specific campaign ID for the affiliate. This parameter can only be used if filter_loginid is passed in. &lt;br /&gt;
**'''filter_offerid''' - Only see stats for the specific Offer ID passed in. &lt;br /&gt;
**'''filter_landing_pageid''' - Only see stats for the specific Landing Page ID passed in. &lt;br /&gt;
**'''filter_adtoolid''' - Only see stats for the specific Creative ID passed in. &lt;br /&gt;
**'''filter_offeritcode''' - Breakdown the Offerit code and only view stats associated with the Offerit code. &lt;br /&gt;
**'''no_inhouse''' - Remove in-house traffic from the returned report. &lt;br /&gt;
**'''no_typein''' - Remove type-in traffic from the returned report. &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;
$function = 'get_profit_loss_report';&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'view' =&amp;gt; 'year',&lt;br /&gt;
	'params' =&amp;gt; Array(&lt;br /&gt;
		'period' =&amp;gt; 7,&lt;br /&gt;
	),&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$result = $client-&amp;gt;call($function, $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;
	[total] =&amp;gt; Array (&lt;br /&gt;
		[breakdown] =&amp;gt; year&lt;br /&gt;
		[row] =&amp;gt; Array (&lt;br /&gt;
			[initial] =&amp;gt; 389&lt;br /&gt;
			[initial_amount] =&amp;gt; 1373187&lt;br /&gt;
			[charges] =&amp;gt; 19200&lt;br /&gt;
			[affiliate_payout] =&amp;gt; 100430&lt;br /&gt;
			[payout] =&amp;gt; 100430&lt;br /&gt;
			[referral_payout] =&amp;gt; 0&lt;br /&gt;
			[account_rep_payout] =&amp;gt; 0&lt;br /&gt;
			[partner_payout] =&amp;gt; 0&lt;br /&gt;
			[byoa_payout] =&amp;gt; 0&lt;br /&gt;
			[promotional_payout] =&amp;gt; 0&lt;br /&gt;
			[join_profit] =&amp;gt; 3779173&lt;br /&gt;
			[rebill] =&amp;gt; 46&lt;br /&gt;
			[rebill_amount] =&amp;gt; 120033&lt;br /&gt;
			[recurring] =&amp;gt; 56&lt;br /&gt;
			[recurring_profit] =&amp;gt; 121573&lt;br /&gt;
			[wm_join] =&amp;gt; 29&lt;br /&gt;
			[wm_join_referral_payout] =&amp;gt; 0&lt;br /&gt;
			[void] =&amp;gt; 77&lt;br /&gt;
			[void_amount] =&amp;gt; -73703&lt;br /&gt;
			[refunds] =&amp;gt; 51&lt;br /&gt;
			[refund_loss] =&amp;gt; -38645&lt;br /&gt;
			[void_reversal] =&amp;gt; 36&lt;br /&gt;
			[void_reversal_amount] =&amp;gt; 37908&lt;br /&gt;
			[advertiser_initial] =&amp;gt; 272&lt;br /&gt;
			[advertiser_initial_amount] =&amp;gt; 2276720&lt;br /&gt;
			[impression] =&amp;gt; 18993&lt;br /&gt;
			[visitor] =&amp;gt; 7969&lt;br /&gt;
			[chargeback] =&amp;gt; 10&lt;br /&gt;
			[chargeback_amount] =&amp;gt; -2850&lt;br /&gt;
			[phone_call] =&amp;gt; 30&lt;br /&gt;
			[phone_call_amount] =&amp;gt; 0&lt;br /&gt;
			[phone_conversion] =&amp;gt; 10&lt;br /&gt;
			[phone_conversion_amount] =&amp;gt; 0&lt;br /&gt;
			[joins_amount] =&amp;gt; 19593&lt;br /&gt;
			[conversion] =&amp;gt; 0&lt;br /&gt;
			[conversion_amount] =&amp;gt; 0&lt;br /&gt;
			[recurring_count] =&amp;gt; 0&lt;br /&gt;
			[recurring_amount] =&amp;gt; 0&lt;br /&gt;
			[advertiser_income_amount] =&amp;gt; 0&lt;br /&gt;
			[seconds_amount] =&amp;gt; 0&lt;br /&gt;
			[credit] =&amp;gt; 0&lt;br /&gt;
			[credit_amount] =&amp;gt; 0&lt;br /&gt;
			[insufficient_funds] =&amp;gt; 0&lt;br /&gt;
			[insufficient_funds_amount] =&amp;gt; 0&lt;br /&gt;
			[credit_reversal] =&amp;gt; 0&lt;br /&gt;
			[credit_reversal_amount] =&amp;gt; 0&lt;br /&gt;
			[chargeback_reversal] =&amp;gt; 0&lt;br /&gt;
			[chargeback_reversal_amount] =&amp;gt; 0&lt;br /&gt;
			[insufficient_funds_reversal] =&amp;gt; 0&lt;br /&gt;
			[insufficient_funds_reversal_amount] =&amp;gt; 0&lt;br /&gt;
			[reversals] =&amp;gt; 0&lt;br /&gt;
			[reversal_profit] =&amp;gt; 0&lt;br /&gt;
			[tier_adjustment_payout] =&amp;gt; 0&lt;br /&gt;
			[correction_payout] =&amp;gt; 0&lt;br /&gt;
			[custom_income] =&amp;gt; 0&lt;br /&gt;
		)&lt;br /&gt;
	)&lt;br /&gt;
	[rows] =&amp;gt; Array (&lt;br /&gt;
		[0] =&amp;gt; Array (&lt;br /&gt;
			[break] =&amp;gt; 1293858000&lt;br /&gt;
			[stats] =&amp;gt; Array (&lt;br /&gt;
				[impression] =&amp;gt; 0&lt;br /&gt;
				[visitor] =&amp;gt; 0&lt;br /&gt;
				[name] =&amp;gt; 1293858000&lt;br /&gt;
				[initial] =&amp;gt; 0&lt;br /&gt;
				[initial_amount] =&amp;gt; 0&lt;br /&gt;
				[advertiser_initial] =&amp;gt; 0&lt;br /&gt;
				[advertiser_initial_amount] =&amp;gt; 0&lt;br /&gt;
				[join_profit] =&amp;gt; 0&lt;br /&gt;
				[joins_amount] =&amp;gt; 0&lt;br /&gt;
				[phone_call] =&amp;gt; 0&lt;br /&gt;
				[phone_call_amount] =&amp;gt; 0&lt;br /&gt;
				[phone_conversion] =&amp;gt; 0&lt;br /&gt;
				[phone_conversion_amount] =&amp;gt; 0&lt;br /&gt;
				[wm_join] =&amp;gt; 0&lt;br /&gt;
				[conversion] =&amp;gt; 0&lt;br /&gt;
				[conversion_amount] =&amp;gt; 0&lt;br /&gt;
				[rebill] =&amp;gt; 0&lt;br /&gt;
				[rebill_amount] =&amp;gt; 0&lt;br /&gt;
				[recurring_count] =&amp;gt; 0&lt;br /&gt;
				[recurring_amount] =&amp;gt; 0&lt;br /&gt;
				[recurring] =&amp;gt; 0&lt;br /&gt;
				[recurring_profit] =&amp;gt; 0&lt;br /&gt;
				[advertiser_income_amount] =&amp;gt; 0&lt;br /&gt;
				[seconds_amount] =&amp;gt; 0&lt;br /&gt;
				[void] =&amp;gt; 0&lt;br /&gt;
				[void_amount] =&amp;gt; 0&lt;br /&gt;
				[credit] =&amp;gt; 0&lt;br /&gt;
				[credit_amount] =&amp;gt; 0&lt;br /&gt;
				[chargeback] =&amp;gt; 0&lt;br /&gt;
				[chargeback_amount] =&amp;gt; 0&lt;br /&gt;
				[insufficient_funds] =&amp;gt; 0&lt;br /&gt;
				[insufficient_funds_amount] =&amp;gt; 0&lt;br /&gt;
				[refunds] =&amp;gt; 0&lt;br /&gt;
				[refund_loss] =&amp;gt; 0&lt;br /&gt;
				[void_reversal] =&amp;gt; 0&lt;br /&gt;
				[void_reversal_amount] =&amp;gt; 0&lt;br /&gt;
				[credit_reversal] =&amp;gt; 0&lt;br /&gt;
				[credit_reversal_amount] =&amp;gt; 0&lt;br /&gt;
				[chargeback_reversal] =&amp;gt; 0&lt;br /&gt;
				[chargeback_reversal_amount] =&amp;gt; 0&lt;br /&gt;
				[insufficient_funds_reversal] =&amp;gt; 0&lt;br /&gt;
				[insufficient_funds_reversal_amount] =&amp;gt; 0&lt;br /&gt;
				[reversals] =&amp;gt; 0&lt;br /&gt;
				[reversal_profit] =&amp;gt; 0&lt;br /&gt;
				[payout] =&amp;gt; 0&lt;br /&gt;
				[affiliate_payout] =&amp;gt; 0&lt;br /&gt;
				[wm_join_referral_payout] =&amp;gt; 0&lt;br /&gt;
				[referral_payout] =&amp;gt; 0&lt;br /&gt;
				[account_rep_payout] =&amp;gt; 0&lt;br /&gt;
				[partner_payout] =&amp;gt; 0&lt;br /&gt;
				[byoa_payout] =&amp;gt; 0&lt;br /&gt;
				[promotional_payout] =&amp;gt; 0&lt;br /&gt;
				[tier_adjustment_payout] =&amp;gt; 0&lt;br /&gt;
				[correction_payout] =&amp;gt; 0&lt;br /&gt;
				[charges] =&amp;gt; 0&lt;br /&gt;
				[custom_income] =&amp;gt; 0&lt;br /&gt;
			)&lt;br /&gt;
		)&lt;br /&gt;
	)&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Template:Offerit_Manual&amp;diff=3345</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=3345"/>
				<updated>2013-09-13T15:30:47Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: &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;
    &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;
{| 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 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;
    &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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Get_Allowed_Affiliates&amp;diff=3344</id>
		<title>Offerit API Get Allowed Affiliates</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_API_Get_Allowed_Affiliates&amp;diff=3344"/>
				<updated>2013-09-13T15:27:39Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: Created page with &amp;quot;{{Offerit Manual | show_api_admin_section = true }}  This function allows you to get the list of enabled, disabled and unassigned affiliates for a landing page. You can also pass...&amp;quot;&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 the list of enabled, disabled and unassigned affiliates for a landing page. You can also pass in an offer ID to see the same information for all the landing pages from an Offer. &lt;br /&gt;
&lt;br /&gt;
*'''offerid''' - The offer ID. Offerit will display all the landing pages for the offer and display the allowed affiliates. &lt;br /&gt;
*'''landing_pageid''' - The landing page ID to display the allowed affiliates for. &lt;br /&gt;
&lt;br /&gt;
=Output Fields=&lt;br /&gt;
*'''message'''  Either 'SUCCESS' for a successful call or 'ERROR:' with an error message about the call. The following error messages are available:&lt;br /&gt;
** ERROR: Landing page ID and/or Offer ID were invalid.&lt;br /&gt;
** ERROR: Landing page ID and/or Offer ID do not exist.&lt;br /&gt;
&lt;br /&gt;
*'''return'''  An array of data containing the following information&lt;br /&gt;
**'''landing_pageid'''  The landing page ID&lt;br /&gt;
**'''private'''  Either public or private describing the offer availability for unassigned affiliates.&lt;br /&gt;
**'''enabled_affiliates'''  List of affiliates with their loginid and username that are enabled to use this offer.&lt;br /&gt;
**'''disabled_affiliates'''  List of affiliates with their loginid and username that are disabled to use this offer.&lt;br /&gt;
**'''unassigned_affiliates'''  List of affiliates with their loginid and username that are unassigned to use this offer.&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;
$function = 'api_get_allowed_affiliates';&lt;br /&gt;
$values = Array(&lt;br /&gt;
	'offerid' =&amp;gt; 350,&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$result = $client-&amp;gt;call($function, $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;
    [message] =&amp;gt; SUCCESS&lt;br /&gt;
	&lt;br /&gt;
    [return] =&amp;gt; Array (&lt;br /&gt;
		[0] =&amp;gt; Array (&lt;br /&gt;
			[landing_pageid] =&amp;gt; 350&lt;br /&gt;
			[private] =&amp;gt; public&lt;br /&gt;
			&lt;br /&gt;
			[enabled_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 1&lt;br /&gt;
					[username] =&amp;gt; stagingadmin&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
&lt;br /&gt;
			[disabled_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 70&lt;br /&gt;
					[username] =&amp;gt; daveadmin&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
&lt;br /&gt;
			[unassigned_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 4&lt;br /&gt;
					[username] =&amp;gt; offeritconk2&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[1] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 5&lt;br /&gt;
					[username] =&amp;gt; identtest&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[2] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 7&lt;br /&gt;
					[username] =&amp;gt; identid3&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
		)&lt;br /&gt;
&lt;br /&gt;
		[1] =&amp;gt; Array (&lt;br /&gt;
			[landing_pageid] =&amp;gt; 351&lt;br /&gt;
			[private] =&amp;gt; private&lt;br /&gt;
			[enabled_affiliates] =&amp;gt; Array ()&lt;br /&gt;
			[disabled_affiliates] =&amp;gt; Array ()&lt;br /&gt;
&lt;br /&gt;
			[unassigned_affiliates] =&amp;gt; Array (&lt;br /&gt;
				[0] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 1&lt;br /&gt;
					[username] =&amp;gt; stagingadmin&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[1] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 4&lt;br /&gt;
					[username] =&amp;gt; offeritconk2&lt;br /&gt;
				)&lt;br /&gt;
&lt;br /&gt;
				[2] =&amp;gt; Array (&lt;br /&gt;
					[loginid] =&amp;gt; 5&lt;br /&gt;
					[username] =&amp;gt; identtest&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
		)&lt;br /&gt;
	)&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3342</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=3342"/>
				<updated>2013-09-05T12:12:39Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Import Options */&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;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;brand_title&amp;gt;Offer Brand&amp;lt;/brand_title&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;/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;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;brand_title&amp;gt;Offer Brand&amp;lt;/brand_title&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;/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''' - The Offerit Category for this offer.&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''' -  List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
*'''Unauthorized''' -   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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:DumpIcons.png&amp;diff=3341</id>
		<title>File:DumpIcons.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:DumpIcons.png&amp;diff=3341"/>
				<updated>2013-09-05T12:11:26Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:DumpIcons.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:BulkOfferImport.png&amp;diff=3340</id>
		<title>File:BulkOfferImport.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:BulkOfferImport.png&amp;diff=3340"/>
				<updated>2013-09-05T12:11:12Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:BulkOfferImport.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:DragImport.png&amp;diff=3339</id>
		<title>File:DragImport.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:DragImport.png&amp;diff=3339"/>
				<updated>2013-09-05T12:10:47Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:DragImport.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3338</id>
		<title>File:OfferBulkImport.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=File:OfferBulkImport.png&amp;diff=3338"/>
				<updated>2013-09-05T12:10:35Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: uploaded a new version of &amp;amp;quot;File:OfferBulkImport.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Bulk_Import_Offers&amp;diff=3337</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=3337"/>
				<updated>2013-09-05T12:10:03Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: Created page with &amp;quot;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...&amp;quot;&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 [[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;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;brand_title&amp;gt;Offer Brand&amp;lt;/brand_title&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;/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;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;brand_title&amp;gt;Offer Brand&amp;lt;/brand_title&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;/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''' - The Offerit Category for this offer.&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''' -  List of countries authorized to promote this offer. (NOTE: You only need to use authorized OR unauthorized.)&lt;br /&gt;
*'''Unauthorized''' -   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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_API_Add_Offer&amp;diff=2968</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=2968"/>
				<updated>2013-04-17T16:54:54Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: Created page with &amp;quot;{{Offerit Manual | show_api_admin_section = true }}  This function allows for you to add an offer into Offerit. To use this function, you must make a SOAP call with the following...&amp;quot;&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;
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;
&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>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1530</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1530"/>
				<updated>2012-01-20T16:46:13Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Other Payment Options */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
&lt;br /&gt;
The payvia types have their own checks that must be met during signup. &lt;br /&gt;
&lt;br /&gt;
:*'''required''' - This field is required to use the specific payvia type.&lt;br /&gt;
:*'''min''' - The minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max''' - The maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - The value must be unique for all affilaites. &lt;br /&gt;
:*'''check_function''' - Will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]]).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:*'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:*'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Tax ID/SSN number for the affiliate&lt;br /&gt;
:*Custom variables 1 through 5 will be stored with the affiliate and can be viewed through the admin.&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1529</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1529"/>
				<updated>2012-01-20T16:43:25Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Signup Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
&lt;br /&gt;
The payvia types have their own checks that must be met during signup. &lt;br /&gt;
&lt;br /&gt;
:*'''required''' - This field is required to use the specific payvia type.&lt;br /&gt;
:*'''min''' - The minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max''' - The maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - The value must be unique for all affilaites. &lt;br /&gt;
:*'''check_function''' - Will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]]).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:*'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:*'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1528</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1528"/>
				<updated>2012-01-20T16:42:58Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Signup Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
&lt;br /&gt;
The payvia types have their own checks that must be met during signup. &lt;br /&gt;
&lt;br /&gt;
:*'''required''' - This field is required to use the specific payvia type.&lt;br /&gt;
:*'''min''' - The minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max''' - The maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - The value must be unique for all affilaites. &lt;br /&gt;
:*'''check_function''' - Will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]]).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1527</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1527"/>
				<updated>2012-01-20T16:42:04Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Payvia Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
&lt;br /&gt;
The payvia types have their own checks that must be met during signup. &lt;br /&gt;
&lt;br /&gt;
:*'''required''' - This field is required to use the specific payvia type.&lt;br /&gt;
:*'''min''' - The minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max''' - The maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - The value must be unique for all affilaites. &lt;br /&gt;
:*'''check_function''' - Will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]]).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1526</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1526"/>
				<updated>2012-01-20T16:41:42Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Payvia Types/Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - set to 1 if you want the field to have a unique value.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
&lt;br /&gt;
The payvia types have their own checks that must be met during signup. &lt;br /&gt;
&lt;br /&gt;
:*'''required''' - This field is required to use the specific payvia type.&lt;br /&gt;
:*'''min''' - The minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max''' - The maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - The value must be unique for all affilaites. &lt;br /&gt;
:*'''check_function''' - Will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]]).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1525</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1525"/>
				<updated>2012-01-20T16:32:57Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Payvia Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&amp;lt;br /&amp;gt;&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - set to 1 if you want the field to have a unique value.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1524</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1524"/>
				<updated>2012-01-20T16:32:17Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Payvia Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
First number is payvia field id&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - set to 1 if you want the field to have a unique value.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1523</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=1523"/>
				<updated>2012-01-20T16:31:51Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* Signup Required Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_affiliate_area_section = true&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
first number is payvia field id&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - set to 1 if you want the field to have a unique value.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
signup[&amp;lt;'''signup_field_name'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:&amp;lt;'''field_checking'''&amp;gt;::&amp;lt;'''check_function'''&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
:'''signup_field_name''' - the field name that is being used&lt;br /&gt;
:'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:'''field_checking''' - will check if two values match (such as a password or email check)&lt;br /&gt;
:'''check_function''' - will perform a check function on the field's value (more information about check functions are available here: [[Offerit_Check_Functions|Offerit Check Functions]])&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=351</id>
		<title>Affiliate Custom Signup</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Affiliate_Custom_Signup&amp;diff=351"/>
				<updated>2011-11-29T01:20:27Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitSopko: /* General Fields */&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;
[[Ct#Offerit|Offerit]] supports the use of custom signup forms for affiliates to signup to your Offerit install.&lt;br /&gt;
&lt;br /&gt;
==Payvia Required Fields==&lt;br /&gt;
first number is payvia field id&lt;br /&gt;
The submit fields have the following format:&lt;br /&gt;
&lt;br /&gt;
:payvia[&amp;lt;'''payvia_field_id'''&amp;gt;:&amp;lt;'''required'''&amp;gt;:&amp;lt;'''min_char'''&amp;gt;:&amp;lt;'''max_char'''&amp;gt;:::::&amp;lt;'''payvia_nice_name'''&amp;gt;]=&lt;br /&gt;
:*'''payvia_field_id''' - the id of the payvia field being used&lt;br /&gt;
:*'''required''' - set to 0 if the field is not required, 1 if it is.&lt;br /&gt;
:*'''min_char''' - the minimum number of characters the field must have to submit.&lt;br /&gt;
:*'''max_char''' - the maximum number of characters the field must have to submit.&lt;br /&gt;
:*'''is_unique''' - set to 1 if you want the field to have a unique value.&lt;br /&gt;
:*'''payvia_nice_name''' - an internal name that corresponds to the payvia_field_id.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
payvia[1:1:1:64:::::Pay To]=Pay To&lt;br /&gt;
payvia[1001:0:0:255:::::Address]=address1&lt;br /&gt;
payvia[1002:0:0:255:::::Address 2]=Addr2&lt;br /&gt;
payvia[1003:0:0:128:::::City]=City&lt;br /&gt;
payvia[1004:0:0:128:::::State]=State&lt;br /&gt;
payvia[1005:0:0:64:::::Zip Code]=Zip&lt;br /&gt;
payvia[1006:0:0:128:::::Country]=United States&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Payvia Types/Fields===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Check&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Pay To||1||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|Address||1001||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||1002||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||1003||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||1004||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||1005||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||1006||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Domestic Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||4||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||5||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Routing Number||6||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||14||1||1||64||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! International Wire&lt;br /&gt;
|-&lt;br /&gt;
! name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Bank Name||7||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Address||8||1||1||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank City||9||1||1||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank State||10||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Bank Zip||11||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Country||12||1||1||128||0||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Number||13||1||1||64||0||alnum_number_check&lt;br /&gt;
|-&lt;br /&gt;
|Account Name||15||1||1||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Account Iban||16||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address||17||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|Address 2||18||0||0||255||0||&lt;br /&gt;
|-&lt;br /&gt;
|City||19||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|State||20||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Country||21||0||0||128||0||&lt;br /&gt;
|-&lt;br /&gt;
|Zip Code||22||0||0||64||0||&lt;br /&gt;
|-&lt;br /&gt;
|Bank Swift||23||0||0||128||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Other Payvias!!name!!payvia_field_id!!required!!min!!max!!is_unique!!check_function&lt;br /&gt;
|-&lt;br /&gt;
|Inteca||Inteca ID||2||1||1||64||1||alnum_letter_space_check&lt;br /&gt;
|-&lt;br /&gt;
|ePassporte||User ID||3||1||1||64||1||&lt;br /&gt;
|-&lt;br /&gt;
|EMC2/IPAYOUT||User Name||24||1||1||128||1||&lt;br /&gt;
|-&lt;br /&gt;
|Paypal||accountid||1007||0||1||55||0||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Signup Required Fields==&lt;br /&gt;
The signup variable must be sent as an array in the postback.&lt;br /&gt;
&lt;br /&gt;
====General Fields====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[account_type]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Set this equal to either affiliate or advertiser.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[offerit]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* This is the [[Ct#Offeritcode|Offerit code]], which is used for referring comissions and account reps&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[username:1:6:16:::easy_username_check]=Username&lt;br /&gt;
signup[company:1:2:64]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Username/Company&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[mailok]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Set this to 1 if the affiliate would like to receive emails&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[url:1:2:128]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:* Main URL for the affiliate&lt;br /&gt;
&lt;br /&gt;
====Password Fields====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[password:1:6:16:::easy_password_check]=&lt;br /&gt;
signup[nostore_verify_password:1:6:16:password]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Special nostore_verify variables are to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[email:1:5:64:::email_check]=&lt;br /&gt;
signup[nostore_verify_email:1:5:64:email]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*Special nostore_verify variables are used to ensure that the when entering the values twice (email or passwords) that both fields match&lt;br /&gt;
&lt;br /&gt;
====Instant Messengers====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[icq:0]=&lt;br /&gt;
signup[aim:0]=&lt;br /&gt;
signup[msn:0]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Personal Information (Name, Address)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[firstname:1:2:32]=&lt;br /&gt;
signup[lastname:1:2:32]=&lt;br /&gt;
signup[address1:1:6:128]=&lt;br /&gt;
signup[address2:0:0:128]=&lt;br /&gt;
signup[city:1:2:64]=&lt;br /&gt;
signup[state:0:0:32]=&lt;br /&gt;
signup[zip_code:1]=&lt;br /&gt;
signup[country]=&lt;br /&gt;
signup[tel:0]&lt;br /&gt;
signup[dob:0]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Payment Method====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[payvia]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The chosen payment method based on the Payvia ID within Offerit.&lt;br /&gt;
&lt;br /&gt;
====Other Payment Options====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[minimum_payout:1]=&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
:*The minimum amount for which to generate a payment for an affiliate, based on the minimum payout options you set up in the Pay Via Types tab of the Commissions Admin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
signup[tax_id_or_ssn:0]=&lt;br /&gt;
signup[custom1:0] (through 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>OfferitSopko</name></author>	</entry>

	</feed>