## Delete Contact

**delete** `/print-mail/v1/contacts/{id}`

Delete a contact. Note that this will not affect orders that were sent to this contact.

### Path Parameters

- `id: string`

### Returns

- `id: string`

  A unique ID prefixed with contact_

- `deleted: true`

  - `true`

- `object: "contact"`

  Always `contact`.

  - `"contact"`

### Example

```http
curl https://api.postgrid.com/print-mail/v1/contacts/$ID \
    -X DELETE \
    -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY"
```

#### Response

```json
{
  "id": "contact_sqF12lZ1VlBb",
  "deleted": true,
  "object": "contact"
}
```
