I'm searching the authorize.net API for how to request that a list of a customer's (by a Customer ID or Profile ID) stored credit card numbers be returned so that these cards can populate a payment form select list. Get Customer Payment Profile List does not seem to support this obvious thing. It seems to support only getting a list of all Payment Profiles with cards that expire within a date range. Anyone know how to make an API call to return a specific customer's credit card numbers in their payment profiles? I'm coding in PHP.
08-03-2023 02:10 PM
Start with:
https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile-ids
For each Profile ID, get the customer profile:
https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile
The call above returns Payment Profile information.
08-03-2023 07:59 PM