Difference between revisions of "NATS4 Post URLs Usage"
Line 4: | Line 4: | ||
− | [[NATS4]] gives you the option of posting to a URL of your choosing when different biller events occur. This allows you to track and keep logs of [[ct#Surfer|surfers]] when they perform a specific action on your site, such as choosing a username, joining, and rebilling. You can find these settings by visiting the [[NATS4 Sites Admin|Sites Admin]], selecting "Edit" next to the tour you wish to edit, and expanding the Postback URLs section with Show/Hide Advanced Settings. | + | [[NATS4]] gives you the option of posting to a URL of your choosing when different biller events occur. This allows you to track and keep logs of [[ct#Surfer|surfers]] when they perform a specific action on your site, such as choosing a username, joining, and rebilling. You can find these settings by visiting the [[NATS4 Sites Admin|Sites Admin]], selecting "Edit" next to the tour you wish to edit, and expanding the Postback URLs section with Show/Hide Advanced Settings. For other postback examples, please check this article: [[NATS4 Postbacks and Post URLs]] |
+ | |||
+ | [[File:postback_urls.png| 450px]]<br/> | ||
+ | |||
There are additional post urls available in the 'Approval/Denial/Upgrade' section for 'Approval/Denial/Upgrade' related post URLs. | There are additional post urls available in the 'Approval/Denial/Upgrade' section for 'Approval/Denial/Upgrade' related post URLs. | ||
− | |||
− | [[File: | + | [[File:Approval denial upgrade.PNG| 450px]]<br/> |
For example, with the '''Rebill Post URL''' field you can have NATS post information to your specified URL on each [[ct#Member|member]] rebill. | For example, with the '''Rebill Post URL''' field you can have NATS post information to your specified URL on each [[ct#Member|member]] rebill. |
Revision as of 15:16, 24 February 2018
NATS4 gives you the option of posting to a URL of your choosing when different biller events occur. This allows you to track and keep logs of surfers when they perform a specific action on your site, such as choosing a username, joining, and rebilling. You can find these settings by visiting the Sites Admin, selecting "Edit" next to the tour you wish to edit, and expanding the Postback URLs section with Show/Hide Advanced Settings. For other postback examples, please check this article: NATS4 Postbacks and Post URLs
There are additional post urls available in the 'Approval/Denial/Upgrade' section for 'Approval/Denial/Upgrade' related post URLs.
For example, with the Rebill Post URL field you can have NATS post information to your specified URL on each member rebill.
Continuing with the Rebill Post URL example, NATS allows you to use Smarty scripts at the URL page to further organize transaction information. The Smarty script here allows you to put your information into a log file:
<? $file = fopen("log.txt", "a"); fwrite($file, print_r($_REQUEST, true)); fclose($file); ?>
With each post back you have access to several fields, allowing a great deal of customization in recording user transactions and information.
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.
Username Post URL vs. User Management URL
NATS can use both username post URLs and user management URLs to keep track of member details and availability. The main difference between the two is that a Username Post URL is specifically for checking username availability, and is only called on during initial signup to verify username availability. A User Management URL will get a variety of calls, including add, check, delete, expire, etc.
Username post URLs will send all of the following variables to your script:
- username
- siteid
- tourid
- programid
- loginid
Your script should echo "*exists*" if the username is already taken. This will refresh the page a prompt the surfer to choose a new username.