> For the complete documentation index, see [llms.txt](https://developer.ivvy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.ivvy.com/notifications/contacts-endpoint.md).

# Contact Endpoint

This notification will be sent when a contact has been modified or created.

* Contact has been updated
* Contact has been created
* Contact has been deleted
* Contact Note has been updated
* Contact Note has been created
* Contact Note has been deleted

## Contact has been created.

### Subject

ContactAdded

### Body

```json
{
    "data": {... JSON Response from getContact API }
}
```

## Contact has been updated.

### Subject

ContactUpdated

### Body

```json
{
    "data": {... JSON Response from getContact API },
    "previousData": {... Previous Data in JSON which has been just updated }
}
```

## Contact has been deleted.

### Subject

ContactDeleted

### Body

```json
{
    "contactId": 123
}
```

## Contact Note has been created.

### Subject

ContactNoteAdded

### Body

```json
{
    "data": {... JSON Response from getContactNoteList API }
}
```

## Contact Note has been updated.

### Subject

ContactNoteUpdated

### Body

```json
{
    "data": {... JSON Response from getContactNoteList API },
    "previousData": {... Previous Data in JSON which has been just updated }
}
```

## Contact Note has been deleted.

### Subject

ContactNoteDeleted

### Body

```json
{
    "noteId": 123
}
```
