Indhold
Debug information - RSForm Plugin Campaign Monitor integration
The RSForm Pro plugin - Campaign Monitor Integration has a 'debug mode'. This makes you able to inspect the submitted data.
The debug information will help you to test your configuration. In 'debug mode' the form submit is deactivated, but the call to Campaign Monitor is made each time you press the submit button on the form. This makes it easy to check the result and fix any errors in the configuration.
Below you see the debug data available:
- First block shows the highlights and the return data from Campaign Monitor in the green block
- Second block shows the form data - collected from the form data variable
- The third block of code is the data manipulated by the plugin - the data is prepared for Campaign Monitor
Go to the example form created in RSForm! Pro with the plugin enabled (debug mode is activated as well)
Data Campaign Monitor API (hightlights)
API-key: 72xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Client-ID::3bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Name:testname E-mail:crea@crea-aalborg.dk Action:subscribe List-ID: [91xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx]Result [HTTP STATUS CODE 201] The call to the Campaign Monitor API is a success - the email is subscribed - the API returns the e-mailadress below:
string(20) "crea@crea-aalborg.dk"
RSFORM - Form Data (not manipulated by plugin)
array(8) { ["FullName"]=> string(8) "testname" ["Email"]=> string(20) "crea@crea-aalborg.dk" ["Lists_dropdown"]=> array(1) { [0]=> string(0) "" } ["List_checkbox"]=> array(1) { [0]=> string(32) "91xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" } ["Action_radiobutton "]=> string(9) "subscribe" ["other_information"]=> array(1) { [0]=> string(9) "Option 1 " } ["Submit"]=> string(6) "Submit" ["formId"]=> string(1) "1" }
Plugin Data - Manipulated data sent by the Campaign monitor integration plugin
Data - Actionstring(9) "subscribe" Data - Email string(20) "crea@crea-aalborg.dk" Data - List(s) array(1) { [0]=> string(32) "91xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" } Data - Customfields NULL
Comments (0)