Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesName | Description |
---|---|
terminalId | The terminal id as assigned by CCV |
installationStatus | The status of the installation. Possible values are: installed and not_installed |
installationPayload | Installation Payload to be used to complete a softpos terminal installation through the mobile application |
Example
{
"terminalId" : "SP001",
"installationStatus": "installed",
"installationPayload" : "IfhGLwDjRrr4mgeFOVr6tkA"
}
Read the terminal information for a specific SoftPos terminal. An error response is returned when a call is performed towards this endpoint prior to the installation call.
/api/v1/softpos/terminal/{terminalId}
GET
Example
curl https://api.psp.ccv.eu/api/v1/softpos/terminal/123456 -u apikey:
200
application/json
Start the installation procedure for a specific SoftPos terminal.
/api/v1/softpos/terminal/{terminalId}/install
POST
Example
curl https://api.psp.ccv.eu/api/v1/softpos/terminal/123456/install -u apikey:
200
application/json
Complete the installation procedure for a specific SoftPos terminal. An error response is returned when a call is performed towards this endpoint prior to the installation call.
/api/v1/softpos/terminal/{terminalId}/install-completed
POST
Example
curl https://api.psp.ccv.eu/api/v1/softpos/terminal/123456/install-completed -u apikey:
200
application/json
Uninstall a specific SoftPos terminal. An error response is returned when a call is performed towards this endpoint prior to the installation completed call.
/api/v1/softpos/terminal/{terminalId}/uninstall
POST
Example
curl https://api.psp.ccv.eu/api/v1/softpos/terminal/123456/uninstall -u apikey:
200
application/json