# Cancel Guarantor Verification

## Get Cancel Guarantor Verification

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

This endpoint allows you cancel a guarantor verification.

#### Path Parameters

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

#### Headers

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

{% tabs %}
{% tab title="200 Guarantor canceled successfully" %}

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

{% endtab %}

{% tab title="404 Guarantor 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/guarantor/<id>"
```

{% endtab %}
{% endtabs %}
