> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hopae.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cancel Verification

Cancels and deletes an ongoing verification session.

## Headers

<Info>
  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.
</Info>

<ParamField header="Authorization" type="string" required>
  Direct API format: `Basic <base64(client_id:client_secret)>`.
</ParamField>

## Path Parameters

<ParamField path="verificationId" type="string" required>
  The unique identifier for the verification session.
</ParamField>

## Response

Returns an empty response with HTTP status code 204 on successful cancellation.

<RequestExample>
  ```bash theme={null}
  curl --request DELETE \
    --url 'https://sandbox.api.hopae.com/connect/v1/verifications/{verificationId}' \
    --user '{clientId}:{clientSecret}'
  ```
</RequestExample>
