GET /v3/merchants/{ {mId}}/customers/{ {cId}}/?expand=cards
CustomerConnector customerConnector = new CustomerConnector(getApplicationContext(), mAccount, null); Customer customer = customerConnector.getCustomer("FPSGSWGPY888J"); List<Card> customerCards = customer.getCards(); for (Card card : customerCards) { Log.d("LAST4", card.getLast4()); }
1 Person is following this question.