Hi everyone can give me one suggestion about multiple credit card purchase with create customer payment profile for example i have 3 credit card info with amount and i want after save this tree profile charge but i lost amount after create profile... if we use CreateCustomerPaymentProfileRequest and save multiple payment profiles, is it going to save with the same order as we send the data, e.g.
if we have
request => [ CC Info 1, CC Info 2, CC Info 3 ]
and the response is
response => [ Payment Profile Id1, Payment Profile Id2, Payment Profile Id3 ],
can we say that
Payment Profile Id1 is for CC info 1,
Payment Profile Id2 is for CC Info 2,
Payment Profile Id3 is for CC Info 3
โ07-25-2016 01:45 PM
If I understand you correct, you wish to create a customer profile with 3 payment profiles and perform a transaction for each?
If this is the case, you would first create a customer profile with 3 payment profiles. Payment profiles are returned in the same order created. Set validationMode to determine wh at checks are made at profile creation.
Then separately, perform a transaction for each card.
Richard
โ07-25-2016 04:50 PM
Thank you @RichardH
โ07-25-2016 11:42 PM