By default the following information will be saved as part of each transaction:
- Personal Identifying Information
- First name, middle initial, last name
- Billing address (address 1, address 2, address 3, city, state, province, country
- Phone number
- Cell phone (in case of mobile giving activation)
- Payment Information
- First 4 digits & last 4 digits of a credit card
- Card type (e.g. Visa, MasterCard, Discover, American Express)
- Other information
- Payment date
- Amount of payment
- Authorization result and gateway response
Additional information may be collected and passed on to the FaaS platform through using the FieldName & FieldValue nodes.
Details: http://manual.clickandpledge.com/For...stom_Questions
Example:
HTML Code:
<input name="FieldName1" type="hidden" maxlength="20" size="40" value="Employer"/> <input name="FieldValue1" type="text" maxlength="50" size="50 />
If additional questions are needed the field values need to be incremented so each Q&A field is unique. For example:
HTML Code:
<input name="FieldName2" type="hidden" maxlength="20" size="40" value="Are you a member?"/> <input name="FieldValue2" type="text" maxlength="50" size="50 />
& if the question is in the form of radio buttons:
HTML Code:
<input name="FieldName3" value="Are you currently a member?" type="hidden" />Member? <input name="FieldValue3" value="Yes" type="radio" checked="checked" /> Yes <input name="FieldValue3" value="No" type="radio" /> No
It is important that each set of questions and answers are identified by a unique number as illustrated above.
The values of the custom questions will be saved for reporting and are accessible in the report section of the administrative system.