Contacts

Receiving New Contacts via Webhook

To receive a webhook when a new contact is created in WhatsApp, enable the contacts.post event in your webhook settings.

This event is triggered when a new contact appears in your WhatsApp account — for example, when you add someone to your address book or create a new contact directly in the app.

A new contact has been created

Below is an example of the webhook payload for contacts.post:

{
  "contacts": [
    {
      "id": "60123673737",
      "name": "Customer 458"
    }
  ],
  "event": {
    "type": "contacts",
    "event": "post"
  },
  "channel_id": "MANTIS-PF213"
}

This allows you to automatically capture and store new contact information as soon as it's available.

Changed contact name

circle-exclamation

Changed contact's profile picture

Use the contacts.patch setting to get this webhook.

Last updated

Was this helpful?