# contact.deleted

Source: https://developer.nylas.com/docs/reference/notifications/contacts/contact-deleted/

Sent when a user deletes a contact.

> The deleted notification typically contains only the contact ID, grant_id, and object type.

## data.object fields

- `grant_id` (string) **(required)** - The grant ID that owns this contact.
- `id` (string) **(required)** - The deleted contact ID.
- `object` (string) (contact) - Always `contact`.

## Example payload

```json
{
  "specversion": "1.0",
  "type": "contact.deleted",
  "source": "/google/contacts/incremental",
  "id": "<WEBHOOK_ID>",
  "time": 1723821985,
  "webhook_delivery_attempt": 1,
  "data": {
    "application_id": "<NYLAS_APPLICATION_ID>",
    "object": {
      "grant_id": "<NYLAS_GRANT_ID>",
      "id": "<CONTACT_ID>",
      "object": "contact"
    }
  }
}
```
