RecordUpdate Webhook Event

Record Update

This webhook response is triggered when a record or business is updated.

The webhook response follows the JSON schema below:

type
string
locationId
string
owners
array[string]
followers
array[string]
properties
array[object]
key
string
valueString
string
id
string
timestamp
string<date-time>
  • Type: string
  • Indicates the type of record created.
  • Type: string
  • Identifies the location associated with the created record.
  • Type: array of strings
  • Represents the unique identifiers of users who own the record.
  • Type: array of strings
  • List of users who are following the record for updates.
  • Type: array of objects
  • Contains key-value pairs representing additional details about the record.
    • key: The property name.
    • valueString: The corresponding value as a string.
  • Type: string
  • Unique identifier for the created record.
  • Type: string
  • Format: date-time
  • Represents the date and time when the record was created.
{
"id": "679b8f9bde6a0c356a0311b3",
"locationId": "eHy2cOSZxMQzQ6Yyvl8P",
"timestamp": "2025-02-10T08:26:05.961Z",
"owners": ["60d5ec49f72b2a001f5f9d91"],
"followers": ["60d5ec49f72b2a001f5f9d93", "60d5ec49f72b2a001f5f9d94"],
"properties": [
{
"key": "pet_name",
"valueString": "buddy"
}
]
}
  • Ensure that your webhook listener is capable of processing POST requests.
  • The owners and followers fields help in managing record access and tracking.
  • The properties array allows extensibility by enabling dynamic field storage.