> ## Documentation Index
> Fetch the complete documentation index at: https://help.hoopai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Record Update | Webhook Events

> Fires when an existing custom object record is modified in an account.

The `RecordUpdate` event fires whenever a custom object record is modified within an account. The payload reflects the record's current state after the update, including any changes to properties, owners, or followers. Use this event to push field changes to external systems, trigger conditional workflows, or maintain audit logs of data modifications.

## Payload

| Field                | Type            | Description                                                          |
| -------------------- | --------------- | -------------------------------------------------------------------- |
| `id`                 | `string`        | Unique identifier for the updated record                             |
| `locationId`         | `string`        | Account ID where the record exists                                   |
| `owners`             | `array<string>` | User IDs currently assigned as owners of this record                 |
| `followers`          | `array<string>` | User IDs currently following this record for updates                 |
| `properties`         | `array<object>` | Current field values for the record, each as a `{ key, value }` pair |
| `properties[].key`   | `string`        | The property key as defined in the object schema                     |
| `properties[].value` | `any`           | The updated value stored for this property                           |
| `timestamp`          | `string`        | ISO 8601 timestamp of when the update occurred                       |

## Example payload

```json theme={null}
{
  "id": "67a349a79b28947ec1f65bb5",
  "locationId": "eHy2cOSZxMQzQ6Yyvl8P",
  "owners": ["YlWd2wuCAZQzh2cH1fVZ"],
  "followers": ["YlWd2wuCAZQzh2cH1fVZ"],
  "properties": [
    { "key": "pet_name", "value": "buddy_updated" }
  ],
  "timestamp": "2024-03-01T00:00:00.000Z"
}
```

## Related

* [Record Create](/api-reference/webhooks/record-create) — fires when a new record is created
* [Record Delete](/api-reference/webhooks/record-delete) — fires when a record is removed
* [Objects API](/api-reference/objects/overview) — manage custom object schemas and records
