---
title: Contacts
---

## Delete Contact
Agentry API endpoint.
**Endpoint**: `DELETE /human/v0/contacts/{email_address}`
**Authentication**: `Authorization: Bearer <token>`
### Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `email_address` | path | string | Yes |  |

### Responses

#### `200`

Successful response

Content-Type: `application/json`

##### Fields

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `deleted_contacts` | integer | Yes |  |
| `email_address` | string | Yes |  |
| `gdpr_erasure_job_id` | string | Yes |  |
| `inbox_id` | string | Yes |  |

##### Example

```json
{
  "deleted_contacts": 0,
  "email_address": "<string>",
  "gdpr_erasure_job_id": "<string>",
  "inbox_id": "<string>"
}
```


## Get Contact Relationship
Agentry API endpoint.
**Endpoint**: `GET /human/v0/contacts/{email_address}/relationship`
**Authentication**: `Authorization: Bearer <token>`
### Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `email_address` | path | string | Yes |  |

### Responses

#### `200`

Successful response

Content-Type: `application/json`

##### Fields

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `email_address` | string | Yes |  |
| `inbox_id` | string | Yes |  |
| `relationship` | object | Yes |  |

##### Example

```json
{
  "email_address": "<string>",
  "inbox_id": "<string>",
  "relationship": null
}
```

