How to get a list of customers' credit cards in Braintree

I am using Braintree payment gateway and I wanted to know how to get a paginated list of pages.

Currently I can get the information using

$result = \Braintree_Customer::find('id');
print_r($result->creditCards);

      

But is there a way to add a limit to it.

+3


source to share


1 answer


I work at Braintree. If you have further questions, I suggest you contact our support team .



No no. Keep in mind that a client is meant to represent a specific person / account, so there shouldn't be a situation where one client has a large number of cards.

0


source







All Articles