Cancels and deletes an ongoing verification session.
Basic authentication: set Authorization.username to your Client ID (client_id) and Authorization.password to your Client Secret (client_secret). The interface builds the header automatically.
Direct API format: Basic <base64(client_id:client_secret)>.
Path Parameters
The unique identifier for the verification session.
Response
Returns an empty response with HTTP status code 204 on successful cancellation.
curl --request DELETE \
--url 'https://sandbox.api.hopae.com/connect/v1/verifications/{verificationId}' \
--user '{clientId}:{clientSecret}'