Skip to content

Latest commit

 

History

History
85 lines (58 loc) · 1.25 KB

contacts-endpoint.md

File metadata and controls

85 lines (58 loc) · 1.25 KB

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

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

Contact has been updated.

Subject

ContactUpdated

Body

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

Contact has been deleted.

Subject

ContactDeleted

Body

{
    "contactId": 123
}

Contact Note has been created.

Subject

ContactNoteAdded

Body

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

Contact Note has been updated.

Subject

ContactNoteUpdated

Body

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

Contact Note has been deleted.

Subject

ContactNoteDeleted

Body

{
    "noteId": 123
}