Om Gehlot
Om Gehlot

Reputation: 28

How to create and get CustomerPaymentProfile in Authorize.Net

Hello,

I am new at Authorize.net and facing some trouble to integrate it with my PHP web-site.

My issues:

1) When i create a customerProfile a payment profile also get created along with it.There is a method to get customerProfileId($response->getCustomerProfileId()). But how to get customerPaymentProfileID?

2) When i create a customerPaymentProfile it is gives success response. but null customerPaymentProfileID.

3) How to get a list of all customerPaymentProfiles by customerProfileId only.

I am using same code as provided in Developer API referance in SANDBOX mode

Please help me with this problem guys.

Upvotes: 0

Views: 237

Answers (1)

KiKMak
KiKMak

Reputation: 830

In Authroize.Net to get customer payment profile ids for a customer profile id, use this sample code :Sample Code to Get Payment Profile Ids.

And while creating a customer payment profile, it returns a customerPaymentProfile : API Reference, check the response tab. For that you need to use $response->getCustomerPaymentProfileId()

Upvotes: 1

Related Questions