---
updatedAt: 2026-03-08T11:25:26.000Z
---

Fetch the complete documentation index at: https://apidocs.hibob.com/llms.txt. Use this file to discover all available pages before exploring further.

# Tasks Webhooks

Receive notifications about triggered task lists and tasks status updates.

Before you dive into the various event types, explore our guide [Getting started with Bob webhooks](/reference/getting-started-webhooks).

### Task Events

Use the following events to receive notifications about triggered task lists and tasks status updates.

| Event               | Type                                                                                                                                                       | Description                                                                              |
| :------------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- |
| Task triggered      | <Anchor label="todo.assign" target="_blank" href="https://apidocs.hibob.com/reference/post_webhook_todo-assign">todo.assign</Anchor>                       | When a task list is triggered, each general task that is created will trigger this event |
| Task status changed | <Anchor label="todo.changedStatus" target="_blank" href="https://apidocs.hibob.com/reference/post_webhook_todo-changed-status">todo.changedStatus</Anchor> | Any change in the status of a general task - completed/incomplete                        |

> **Note**: As best practice we recommend to use the event as a notification only, and retrieve the complete task details by using the [Read tasks of a specific employee](https://apidocs.hibob.com/reference/get_tasks-people-id)  API endpoint. Use the employee ID (which is returned in the "toDoAssigneeId" in the event's payload), to filter the API response.

### Call the API

To retrieve the task details, use the employee ID and task ID from the payload to call the endpoint URL. To learn more, see [API call for Task events](https://apidocs.hibob.com/reference/api-calls-for-webhook-events#task-events)