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
ContactAdded
{
"data": {... JSON Response from getContact API }
}
ContactUpdated
{
"data": {... JSON Response from getContact API },
"previousData": {... Previous Data in JSON which has been just updated }
}
ContactDeleted
{
"contactId": 123
}
ContactNoteAdded
{
"data": {... JSON Response from getContactNoteList API }
}
ContactNoteUpdated
{
"data": {... JSON Response from getContactNoteList API },
"previousData": {... Previous Data in JSON which has been just updated }
}
ContactNoteDeleted
{
"noteId": 123
}