Skip to main content
DELETE
https://sandbox.api.hopae.com/connect/v1
/
verifications
/
{verificationId}
curl --request DELETE \
  --url 'https://sandbox.api.hopae.com/connect/v1/verifications/{verificationId}' \
  --user '{clientId}:{clientSecret}'
Cancels and deletes an ongoing verification session.

Headers

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.
Authorization
string
required
Direct API format: Basic <base64(client_id:client_secret)>.

Path Parameters

verificationId
string
required
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}'