---
title: "GET /api/public/employee_trainings/"
method: GET
path: "/api/public/employee_trainings/"
tags: ["api"]
---

# GET /api/public/employee_trainings/

`GET /api/public/employee_trainings/`

List all employee training objects. Employee Training object represents
assignement of a training to an employee.

If you want to fetch only assigned trainings to one particular employee,
you can use the `employee_id` query parameter.

Or if you want to see all employees assigned to a particulat training,
you can use the `training_id` query parameter.

## Query parameters

- `page` integer
- `page_size` integer
- `employee_id` string
- `training_id` string
- `employee_name` string
- `training_name` string
- `completion_status` boolean
- `year` integer

## Response `200`

OK

- object
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` PublicEmployeeTraining[], required
    - `id` string, uuid
    - `employee_name` string, required
    - `employee_email` string, required
    - `employee_id` string
    - `training_name` string, required
    - `training_id` string
    - `date_assigned` string, date-time, required
    - `completion_status` string
    - `completion_rate` string
    - `completion_position` string
    - `year` integer

---

[API](https://skmtc.net/haekka/apis/snippets-api.md) · [All operations](https://skmtc.net/haekka/apis/snippets-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/haekka/snippets-api/revisions/2a72ba99e389/schema)
