---
title: "Employee updated"
method: POST
path: "employeeUpdated"
tags: ["Employee data Webhooks"]
---

# Employee updated

`POST employeeUpdated` (webhook)

Triggered when an employee's field is updated.

The payload includes only the fields that were explicitly changed. Calculated
fields affected by an update (e.g., age when birthDate changes) are not included.

This event is also sent when a <a href="https://apidocs.hibob.com/reference/post_webhook_table-entry-created" target="_blank">table entry</a> create or update causes employee-level fields to change; the payload then contains the affected field IDs in <code>fieldUpdates</code>. Bank accounts and custom tables do not trigger this event when their entries change.

In the right panel, open **Examples** and select **Payload Example** to see a real payload.

## Headers

- `bob-signature` string, required

## Payload

- EmployeeUpdatedEvent — Base webhook event structure containing common webhook properties
  - `companyId` number, required — The company ID
  - `type` 'employee.updated', required — Event type for employee field updated
  - `triggeredBy` string, required — The backend-id of the employee that triggered the event or 'system' for events triggered automatically by the system
  - `triggeredAt` string, date-time, required — The timestamp when the event occurred
  - `version` string, required — The webhook version
  - `data` object, required — Data payload for employee.updated event
    - `employeeId` string, required — The unique identifier of the employee
    - `fieldUpdates` object[] — The field IDs that were explicitly changed (calculated fields are not included)
      - `id` string — The field ID (e.g., personal.birthDate)

## Acknowledgement `200`

Webhook received successfully

## Other responses

- `400` — Invalid webhook payload

---

[API](https://skmtc.net/hibob/apis/employee-data-api.md) · [All operations](https://skmtc.net/hibob/apis/employee-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hibob/employee-data-api/versions/0781ebbdda91/schema)
