# Cancel Business Verification

## Cancel Business Verification

<mark style="color:red;">`DELETE`</mark> `https://vapi.verifyme.ng/v1/verifications/businesses/:id`

An Endpoint to cancel an address Verification

#### Path Parameters

| Name | Type   | Description              |
| ---- | ------ | ------------------------ |
| id   | string | Business Verification ID |

#### Headers

| Name           | Type   | Description         |
| -------------- | ------ | ------------------- |
| Authentication | string | Authorization Token |

{% tabs %}
{% tab title="200 Business Verification canceled successfully" %}

```
{
    "status": "success",
    "data": "ok"
}
```

{% endtab %}

{% tab title="404 Business Verification Request Not Found." %}

```
{
    "status": "error",
    "message": "Not Found",
    "code": "NOT_FOUND_ERROR"
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Curl" %}

```
curl --verbose  
    --header "Authorization: Bearer <token>" 
    --request "DELETE" "https://vapi.verifyme.ng/v1/verifications/business/<id>"
```

{% endtab %}
{% endtabs %}
