Skip to main content

Compliance Proxy

Hellgate® Tokens are a great way to securely and compliantly store sensitive cardholder data. As they are by default made for exchange and multi-acquirer use, they are a splendid way to unlock your payment method data from your current payment service provider or to prevent such a lock-in upfront.

Conceptional View

Consider the following setup, where a merchant (you) maintains a solution for the shopper (your customers) to tokenize cardholder data (CHD) using our Hellgate® SDKs. The SDKs exchange the sensitive data into Hellgate® tokens, which are passed back to your backend.

Hellgate Token Use-Case

With that you as the merchant are free to use the create tokens with any payment service provider of your choice. The token will be exchanged by Hellgate® on the go with the original cardholder data.

Exemplary Use

The Hellgate® compliance service is responsible for exchanging token information with original cardholder data in a secure way. Please see our API documentation for technical details on how to use this service.

Instead of calling the API of your payment service provider directly, you send the request to Hellgate® and instruct how the sensitive information of the cardholder will be used.

info

Cardholder data can only be forwarded to allowed destinations. To add allowed destinations, please contact your Hellgate® representative. Any attempts to forward data to non-allowed destinations will result in a rejection.

curl --location 'https://api.hellgate.io/forward' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <HELLGATE-API-KEY>' \
--header 'X-HELLGATE-TOKEN: d7d272f7-f0e8-44c6-9459-c60e1ef279d5' \
--header 'X-DESTINATION-URL: https://try.access.worldpay.com/api/payments' \
--header 'X-WP-API-VERSION-NAME: WP-Api-Version' \
--header 'X-WP-API-VERSION-VALUE: 2024-06-01' \
--header 'X-WP-AUTHORIZATION-NAME: Authorization' \
--header 'X-WP-AUTHORIZATION-VALUE: <YOUR CREDENTIALS>' \
--data '{
"transactionReference": "a260bde0-8dee-4feb-bc4a-0af2b851584d",
"merchant": {
"entity": "default"
},
"instruction": {
"method": "card",
"paymentInstrument": {
"type": "plain",
"cardHolderName": "Sherlock Holmes",
"cardNumber": "{{ account_number }}",
"expiryDate": {
"month": {{ expiration_month | unwrap }},
"year": {{ expiration_year | unwrap }}
},
"billingAddress": {
"address1": "221B Baker Street",
"address2": "Marylebone",
"postalCode": "SW1 1AA",
"city": "London",
"state": "Greater London",
"countryCode": "GB"
},
"cvc": "{{ security_code }}"
},
"narrative": {
"line1": "trading name"
},
"value": {
"currency": "GBP",
"amount": 42
}
}
}'
'
info

The security_code is only available for 15 minutes after the cardholder data has been stored.