Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesThe payment solutions of CCV contains services for Tokenization. You can get a token from a payment card by accessing this service with a HTTP.POST request to /terminal/token.
Request headers
Request parameters
Parameter | Description |
---|---|
tokenType | the type of a token. Possible values are: card, web |
terminalOperatingEnvironment | the configuration of the terminal that you would like to use for this transaction |
terminalAccessProtocol | the protocol to communicate with the terminal |
terminalLanguage | the language for the texts that are going to be displayed on the terminal |
Example request
{ "tokenType" : "CARD" "terminalOperatingEnvironment": "UNATTENDED", "terminalAccessProtocol": "OPI_NL", "terminalLanguage": "ENG" }Response parameters
Parameter | Description |
---|---|
status | the overall status |
token | the token |
Example response
{ "status": "SUCCESS", "token": "993525316521889183" }