Difference between revisions of "Template:Payment profiles"
Jump to navigation
Jump to search
(Created page with "Payment profiles allow you to save payment information straight to the gateway for future use. To create a payment profile, call either '''CCProfileCreatePayment''' or '''CCPr...") |
(No difference)
|
Revision as of 19:35, 3 June 2013
Payment profiles allow you to save payment information straight to the gateway for future use. To create a payment profile, call either CCProfileCreatePayment or CCProfileCreatePaymentACH, depending on whether the payment profile is a credit card or ACH. Credit cards are created with CCProfileCreatePayment and updated with CCProfileUpdatePayment.
CCProfileCreatePayment | CCProfileUpdatePayment |
merchantAccountName | merchantAccountName |
txKey | txKey |
customerProfileId | customerProfileId |
cardNumber | paymentProfileId |
expirationDate | cardNumber |
expirationDate |
After creation, payments can be retrieved with CCProfileGetPayment. Certain gateways can validate a payment with CCProfileValidatePayment. Payments can be deleted with CCProfileDeletePayment.
CCProfileGetPayment | CCProfileValidatePayment | CCProfileDeletePayment |
merchantAccountName | merchantAccountName | merchantAccountName |
txKey | txKey | txKey |
customerProfileId | customerProfileId | customerProfileId |
paymentProfileId | paymentProfileId | paymentProfileId |