Difference between revisions of "NATS4 Shopping Cart Sales"

From TMM Wiki
Jump to navigationJump to search
Line 4: Line 4:
  
 
== Billers Admin ==
 
== Billers Admin ==
Go to [[Billers Admin]] and select "Shopping Cart" from the Biller
+
 
drop-down. Enter a [[ct#Short name|shortname]] in the Shop ID field.
+
If you wish to configure a Shopping Cart Sales site, you must first start at the [[NATS4 Billers Admin|Billers Admin]]. Go to the [[NATS4 Billers Admin|Billers Admin]], scroll to the bottom of the page, and select "Shopping Cart" from the Setup New Biller drop-down menu. When prompted, enter a [[Ct#Short name|shortname]] for your shop in the "Shop ID" field.
  
 
== Sites Admin (Optional) ==
 
== Sites Admin (Optional) ==
Go to [[Sites Admin]], add a new ''shopping'' type site or edit the tour of
+
 
an existing shopping site, and enter your Shop ID in the SHOP Site
+
To further configure your Shopping Cart site, go to the [[NATS4 Sites Admin|Sites Admin]] and click the "Add a Site" tab at the top of the page. On the next page, choose the "Store" Site Type, fill in the site name, and short name (what you made Shop ID). When you are done filling out the details, click Save Changes. This site and tour will now be associated with your Shopping Card biller option.
field. This associates sales though this site and tour with that
 
shopping cart.
 
  
 
== Configuration ==
 
== Configuration ==
Line 24: Line 22:
  
 
== Shopping Cart Post Parameters ==
 
== Shopping Cart Post Parameters ==
Make your shopping cart post the following required parameters to
+
The following parameters are required to be posted to the ''signup/process_shop.php'' script on your NATS [[Ct#Domain|domain]]. Without doing so, your shopping cart sales will not be properly processed.
the ''/signup/process_shop.php'' script on your NATS [[ct#Domain|domain]].
 
  
 
* nats - The NATS code of this sale
 
* nats - The NATS code of this sale
* amount - The amount of the sale in USD cents.
+
* amount - The amount of the sale in USD dollars/cents.
 
* transid - The ID of the transaction from inside the shopping cart.
 
* transid - The ID of the transaction from inside the shopping cart.
 
* shop_id -- the Shop ID of a shopping cart you setup in the Billers Admin
 
* shop_id -- the Shop ID of a shopping cart you setup in the Billers Admin
  
 
=== Extra Parameters ===
 
=== Extra Parameters ===
You can send the following extra parameters:
+
You can send the following extra parameters for additional information:
  
 
* site_id -- register the sale under this site (used when a [[ct#NATS Code|natscode]] isn't present)
 
* site_id -- register the sale under this site (used when a [[ct#NATS Code|natscode]] isn't present)

Revision as of 17:10, 5 August 2010

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
NATS Extras
TMMid
Gallery Builder Module
CAPTCHA
Remote Affiliate Authentication
Build Your Own Anything Module
Shopping Cart Sales
Moving Tours, Members' Area, and Galleries
Admin Areas
Extended Sales
NATS Code Wordpress Plugin
Error_message_display
ATVOD Verification Process

Billers Admin

If you wish to configure a Shopping Cart Sales site, you must first start at the Billers Admin. Go to the Billers Admin, scroll to the bottom of the page, and select "Shopping Cart" from the Setup New Biller drop-down menu. When prompted, enter a shortname for your shop in the "Shop ID" field.

Sites Admin (Optional)

To further configure your Shopping Cart site, go to the Sites Admin and click the "Add a Site" tab at the top of the page. On the next page, choose the "Store" Site Type, fill in the site name, and short name (what you made Shop ID). When you are done filling out the details, click Save Changes. This site and tour will now be associated with your Shopping Card biller option.

Configuration

Add the following line to nats/includes/config.php:

$config['SHOP_ALLOWED_IPS'] = Array('123.123.123.123');

Replace the IP address inside the single quotes with the IP address of your shopping cart.

Shopping Cart Post Parameters

The following parameters are required to be posted to the signup/process_shop.php script on your NATS domain. Without doing so, your shopping cart sales will not be properly processed.

  • nats - The NATS code of this sale
  • amount - The amount of the sale in USD dollars/cents.
  • transid - The ID of the transaction from inside the shopping cart.
  • shop_id -- the Shop ID of a shopping cart you setup in the Billers Admin

Extra Parameters

You can send the following extra parameters for additional information:

  • site_id -- register the sale under this site (used when a natscode isn't present)
  • action -- "SALE" to register a new sale. Either "chargeback" or "credit" registers a chargeback or credit for that transaction ID number (transid)
  • username - you can send the shopper's username along and NATS will record the sale under their account
  • ip - The IP address of the surfer doing the sale
  • password
  • email
  • firstname
  • lastname
  • address1
  • address2
  • zip
  • city
  • state
  • country - an ISO two letter code
  • shipping_firstname
  • shipping_lastname
  • shipping_address1
  • shipping_address2
  • shipping_zip
  • shipping_city
  • shipping_state
  • shipping_country - an ISO two letter code
  • custom1
  • custom2