You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add a card to an existing customer. I can not get it to save. I have been able to make the description change with the updateCustomer function, but not the new credit card. I appears the updateCustomer call update the card info, but does not create a new card.
I am trying to add a card to an existing customer. I can not get it to save. I have been able to make the description change with the updateCustomer function, but not the new credit card. I appears the updateCustomer call update the card info, but does not create a new card.
Any ideas?
<cfset card= { 'exp_month'= Form.exp_month,
'name'= Form.name,
'address_line1'= Form.address_line1,
'address_line2'= Form.address_line2,
'address_city'= Form.address_city,
'address_state'= Form.address_state,
'address_zip'= Form.address_zip,
'number'= Form.number,
'cvc'= Form.cvc,
'exp_year'= Form.exp_year }>
The text was updated successfully, but these errors were encountered: