Stage 1: Receive Card Details from Third Party
Two patterns depending on your integration:Pull: You Fetch from the Third Party’s API
- Third party sends you a notification with a reservation ID (no card data).
- Your system calls the third party’s API to retrieve reservation details including card data.
- Route that API call through PCI Booking using Tokenization on Response. PCI Booking intercepts the response, extracts the card data, stores it, and returns a token to you.
- You store the reservation details and the token.
Push: Third Party Sends Data to Your API
- Third party sends reservation details (including card data) to your API endpoint.
- Configure your endpoint behind PCI Booking using Tokenization on Request. PCI Booking intercepts the incoming request, extracts the card data, stores it, and forwards the tokenized request to you.
- You store the reservation details and the token.
Stage 2: Charge the Card
Once you hold the token, charge the card through a payment gateway:Option A: Universal Payment Gateway (Recommended)
Use the Universal Payment Gateway to charge the card directly.- Send a Process Transaction request with the token, amount, currency, and gateway credentials.
- PCI Booking injects the real card data and sends the charge request to the payment gateway.
- You receive the gateway’s response.
Option B: Token Replacement
Use Token Replacement to send the card to the gateway’s API yourself.- Build an API request to your payment gateway containing the card token.
- Route it through PCI Booking. PCI Booking replaces the token with real card data in transit.
- The gateway processes the charge and responds.
Frequently asked questions
How does PCI Booking handle OTA virtual credit cards?
PCI Booking intercepts the card data from the OTA’s API response (or incoming webhook), extracts the virtual card details, stores them as a token, and returns the token to your system. The card data never reaches your servers.Does this work with Booking.com and Expedia?
Yes. PCI Booking’s tokenization works with any third party that sends card data via API, including Booking.com, Expedia, and all major channel managers.Related
- Tokenization on Response. Tokenize card data from third-party API responses.
- Tokenization on Request. Tokenize card data pushed to your API.
- Universal Payment Gateway. Charge cards through 100+ supported gateways.
- Gateway Credentials. Set up your payment gateway credentials.
- Send Stored Card Details to a Hotel. Need to share the card with a hotel property instead of charging it?
- Collect and Process a Payment. Capturing the card directly from the cardholder? See this workflow.

