Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesWarning
The Android REST API (CCV PayProxy application) is now in maintenance mode. This means that new integrations with the REST API are no longer possible. Existing users can continue using the API as usual. For any questions or issues regarding the REST API, please contact pi-support@ccvlab.eu.
The 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" }