For the complete documentation index, see llms.txt. This page is also available as Markdown.

Contacts

This guide explains the Contact Webhook Payload data format for Contact Added, Contact Tag Added, and Contact Tag Removed triggers in Whautomate. Stay up-to-date and optimize your workflow today!

Contact Created

(i) Payload Format: Contact Created Payload data format and content that Whautomate will transmit to the configured endpoint.

{
  "event": {
    "id": "{{event.id}}",
    "type": "{{event.type}}",
    "timeStamp": "{{event.timeStamp}}",
    "key": "{{event.key}}"
  },
  "contact": {
    "id": "{{contact.id}}",
    "name": "{{contact.name}}",
    "channel": "{{contact.channel}}",
    "phoneNumber": "{{contact.phoneNumber}}",
    "username": "{{contact.username}}",
    "messengerId": "{{contact.messengerId}}",
    "telegramChatId": "{{contact.telegramChatId}}",
    "instagramId": "{{contact.instagramId}}",
    "lastActivity": "{{contact.lastActivity}}",
    "notes": "{{contact.notes}}",
    "stage": "{{contact.stage}}",
    "tags": "{{contact.tags}}",
    "customFields": "{{contact.customFields}}",
    "location": {
      "id": "{{contact.location.id}}",
      "title": "{{contact.location.title}}"
    },
    "createdAt": "{{contact.createdAt}}",
    "updatedAt": "{{contact.updatedAt}}"
  }
}

(ii) Contact Created test Payload data 👇


Contact Tag Added

(i) Payload Format: Contact Tag Added Payload data format and content that Whautomate will transmit to the configured endpoint.

(ii) Contact Tag Added test Payload data 👇


Contact Tag Removed

(i) Payload Format: Contact Tag Removed Payload data format and content that Whautomate will transmit to the configured endpoint.

(ii) Contact Tag Removed test Payload data 👇

Last updated