You can allow your cardholders to access the details of their Adyen-issued card within your app. This page explains how to use Adyen's Card Reveal iOS SDK to securely reveal card details in your user interface, such as:
- Card verification code (CVC)
- Primary account number (PAN)
- Expiration date
To reveal the card details in your user interface, you must first get the card details data from Adyen. To securely request the data, you use a base64-encoded RSA public key and Adyen's Card Reveal iOS SDK to generate an encrypted session key.
Use the session key to request from Adyen the encrypted card details assigned to an Adyen-issued card. You can decrypt this card data using Adyen's Card Reveal iOS SDK, and then reveal them to the cardholder.
The following sequence diagram illustrates the workflow.
As shown in the diagram, the steps for revealing the card details are:
- Get a public key from Adyen.
- Generate an encrypted session key.
- Request card details from Adyen.
- Decrypt and reveal the card details in your user interface.
Requirements
Ensure that:
- You have API credentials for the Configuration API.
- Your API credential has the Bank Issuing PAN Reveal Webservice role.
- Your application uses iOS version 13.0 or later.
- You installed Adyen's Card Reveal iOS SDK.
Get a public key from Adyen
You need a base64-encoded RSA public key to generate an encrypted session key. Use the Configuration API to get the public key from Adyen.
To get a public key:
-
Make a GET /publicKey request, specifying the following query parameters:
The response contains:
- The public key
- The expiry date of the public key
-
Pass the publicKey to your client.
Generate an encrypted session key
You need an encrypted symmetric session key to securely request the card details from Adyen. Generate the encrypted session key using the public key and Adyen's Card Reveal iOS SDK. The steps are as follows:
-
Initialize the
CardRevealService
method. -
Call the
generateEncryptedKey
method, passing the publicKey as a parameter.
Now, encryptedKey
contains the encrypted symmetric session key that you need to request the card details from Adyen.
Request card details from Adyen
Request from Adyen the encrypted card details as follows:
-
Make a POST /paymentInstruments/reveal request and specify the following parameters:
Parameter Description paymentInstrumentId The unique identifier of the card for which you are revealing the details. encryptedKey The encrypted symmetric session key. The response contains the encryptedData.
-
Pass the encryptedData to your client.
Decrypt and reveal card details
Use Adyen's Card Reveal iOS SDK to decrypt and reveal the card data as follows:
-
Call the
cardDetails
method to decrypt the encryptedData. -
Pass the
decryptedCardDetails
to your app. -
Reveal the
decryptedCardDetails
in your user interface.