Haekka Employee Trainings API

Per-employee training assignments and completion state.

Operations 3

GET /employee_trainings List employee trainings #
GET /employee_trainings/{employee_training_id} Get an employee training #
PATCH /employee_trainings/{employee_training_id} Update an employee training #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/haekka-employee-trainings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

haekka-employee-trainings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Haekka Public Employee Trainings API
  version: '1.0'
  description: The Haekka Public API provides read access to a company's employees, trainings, and employee-training records, plus the ability to assign trainings to employees and update employee-training completion. Haekka is a Slack-native microlearning and security-awareness training platform. API keys are generated in Haekka account settings and passed as a bearer token.
  contact:
    name: Haekka Support
    url: https://www.haekka.com/support
    email: hello@haekka.com
  x-provenance:
    generated: '2026-07-19'
    method: generated
    source: https://www.haekka.com/documentation/haekka-public-api-documentation
    note: Faithfully modeled from Haekka's published Public API documentation (routes, HTTP methods, bearer auth, and documented request fields). Field schemas are intentionally open (additionalProperties) where the docs do not enumerate response fields; nothing is fabricated.
servers:
- url: https://app.haekka.com/api/public
  description: Haekka Public API
security:
- bearerAuth: []
tags:
- name: Employee Trainings
  description: Per-employee training assignments and completion state.
paths:
  /employee_trainings:
    get:
      operationId: listEmployeeTrainings
      tags:
      - Employee Trainings
      summary: List employee trainings
      description: Returns all employee-training objects in the company.
      responses:
        '200':
          description: A list of employee-training records.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmployeeTraining'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /employee_trainings/{employee_training_id}:
    get:
      operationId: getEmployeeTraining
      tags:
      - Employee Trainings
      summary: Get an employee training
      description: Returns a specific employee-training instance.
      parameters:
      - $ref: '#/components/parameters/EmployeeTrainingId'
      responses:
        '200':
          description: The requested employee-training record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeTraining'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    patch:
      operationId: updateEmployeeTraining
      tags:
      - Employee Trainings
      summary: Update an employee training
      description: 'Updates an employee-training record''s completion. Supports completion_status (boolean) and completion_rate (0-100). Note: completion_status overrides completion_rate to 100.'
      parameters:
      - $ref: '#/components/parameters/EmployeeTrainingId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                completion_status:
                  type: boolean
                  description: Whether the training is complete. When true, overrides completion_rate to 100.
                completion_rate:
                  type: integer
                  minimum: 0
                  maximum: 100
                  description: Completion percentage from 0 to 100.
      responses:
        '200':
          description: The updated employee-training record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeTraining'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    NotFound:
      description: The requested resource was not found.
    BadRequest:
      description: The request was malformed or missing required fields.
    Unauthorized:
      description: Authentication is missing or the API key is invalid.
  schemas:
    EmployeeTraining:
      type: object
      description: A per-employee training assignment and its completion state.
      properties:
        id:
          type: string
          description: The unique id of the employee-training record.
        employee_id:
          type: string
          description: The id of the associated employee.
        training_id:
          type: string
          description: The id of the associated training.
        completion_status:
          type: boolean
          description: Whether the training is complete.
        completion_rate:
          type: integer
          minimum: 0
          maximum: 100
          description: Completion percentage from 0 to 100.
      additionalProperties: true
  parameters:
    EmployeeTrainingId:
      name: employee_training_id
      in: path
      required: true
      description: The id of the employee-training record.
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key generated in Haekka account settings, passed as `Authorization: Bearer {key}`.'