Difference between revisions of "NATS4 Post URLs Usage"

From TMM Wiki
Jump to navigationJump to search
Line 1: Line 1:
 
{{NATS4 Manual
 
{{NATS4 Manual
| show_billers_section = true
+
| show_sites_admin_section = true
 
}}
 
}}
  

Revision as of 11:34, 14 June 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
Sites Admin
The Sites Admin
Sites
Site Setup
Site Templates
Tour Setup
Join Options
No Cost Registration
Special Pricing Options
Join Option Rules
Post URL Usage
Post URLs in NATS4
Approval/Upgrade/Denial Variables
Approval/Upgrade/Denial Template Variables
Mobile Tours
Token Sites
ID Numbers
Site Partner
Site User Management
Example Postbacks for Site User Management
Configure Redirects
Split A-B Testing
Username Checking
Form Validation
Post-Biller Templates
Send Information To Special Biller
Join Option Box vs Button
Qualified Join Page Hits
Allowed languages
Customize Join Form
Package Plus
Token Plus
Signup Plus
Type-In Traffic
Coupon Codes
Setting Rules
Site Groups
Options Simulator
ATVOD Verification Process


You can have NATS post to a URL of your choosing when different biller events happen.

Postback urls.png

For example, with Rebill Post URL you can have NATS post to this URL on each rebill.

Continuing with the Rebill Post URL example you could have a script at the URL you entered that would get all the transaction information and put it in a log file like this:

<?
$file = fopen("log.txt", "a");
 fwrite($file, print_r($_REQUEST, true));
 fclose($file);
?>


With each post back you have access to several fields.

For a list of the fields in the post please see the wiki page Nats4 Post URL Variables.
For an example of these fields please see the wiki page NATS4 Post URLs.