---
title: "Read tasks of a specific employee"
method: GET
path: "/tasks/people/{id}"
tags: ["Tasks"]
---

# Read tasks of a specific employee

`GET /tasks/people/{id}`

## Path parameters

- `id` string, required

## Query parameters

- `task_status` 'open' | 'closed'

## Response `200`

All of a specific employee's open tasks.

- Tasks
  - `tasks` Task[]
    - `id` number
    - `owner` TaskEmployee
      - `id` string
      - `firstName` string
      - `surname` string
      - `email` string
      - `displayName` string
    - `title` string
    - `requestedFor` TaskEmployee
      - `id` string
      - `firstName` string
      - `surname` string
      - `email` string
      - `displayName` string
    - `due` string, date
    - `linkInBob` string
    - `set` string
    - `workflow` string
    - `ordinalInWorkflow` number
    - `description` string
    - `status` string
    - `completionDate` string, date
    - `employeeGroupId` number
    - `companyId` number — The ID of the employee's company.

## Other responses

- `default` — Unexpected error

---

[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/revisions/0781ebbdda91/schema)
