I have a small problem with Authorize.NET SDK (CIM).
Currently i’m using PHP SDK and I need to update customer payment profile (bill to address, first name, last name), that is stored in CIM (i have customer profile id, payment profile id). But i have no credit card information (cvc2, card_number, exp_date).
Is it real?
I have a small problem with Authorize.NET SDK (CIM). Currently i’m using PHP SDK
Share
You can send masked credit card data to
updateCustomerPaymentProfileRequestif you do not need to update it.For the credit card number you would send
XXXX1111where the last four digits must match last four digits of the the stored credit card. For the expiration date you would sendXXXX.You can use a call to
getCustomerPaymentProfileRequestto obtain the proper masked credit card values.