Skip to main content

Overview

This recipe is a guide to using our “Get Sensitive Card Info” endpoint to retrieve a client-facing URL for fetching sensitive card information from your client-facing application.

Step 1: Get client IP Address

Extract client IP address from your client’s browser or application in your API request handler.

Step 2: Get card sensitive info retrieval URL

Pass in the card account id, card id, and client’s IP address to retrieve a client facing URL for fetching card-sensitive info securely without card information passing through your backend servers.

Step 3: Directly consume URL from client

Consume the URL obtained in the previous step to access sensitive card information securely and display the full card details.

Security Benefits

This approach ensures that sensitive card information never passes through your backend servers, reducing your PCI DSS compliance scope and improving security.

Next Steps