> For the complete documentation index, see [llms.txt](https://docs.verifyme.ng/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.verifyme.ng/employment-verification/cancel-employment-history-verification.md).

# Cancel Employment History Verification

## Get Cancel Employment History Verification

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

This endpoint allows you to cancel an employment history verification.

#### Path Parameters

| Name | Type   | Description                        |
| ---- | ------ | ---------------------------------- |
| id   | string | Employment History 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/employment/<id>"
```

{% endtab %}
{% endtabs %}
