- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Obtaining card information after creating payment profile
After creating payment profile, I'm interested in obtaining masked card number and card's brand(like VISA).
I know I can obtain this information from validationDirectResponse filed in response. But, this is a string and need to be parsed.
Is there any better way of getting these information ?
[I mean by doing something like: response.paymentProfile.Card.Brad ]
โ08-21-2018 06:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can call Get Customer Payment Profile API for it .
<payment>
<creditCard>
<cardNumber>XXXX1111</cardNumber>
<expirationDate>XXXX</expirationDate>
<cardType>Visa</cardType>
<issuerNumber>411111</issuerNumber>
</creditCard>
</payment>
Send feedback at developer_feedback@authorize.net
โ08-21-2018 10:49 PM - edited โ08-21-2018 10:49 PM

