Peakon Employees API

Manage employees

Operations 8

GET /employees Get employees
POST /employees Create employee
GET /employees/contexts/{contextId} Get employees for context
GET /employees/count Get employee count
GET /employees/contexts/{contextId}/count Get employee count for context
GET /employees/{employeeId} Get employee
PATCH /employees/{employeeId} Update employee
DELETE /employees/{employeeId} Delete employee

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/peakon-employees-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

peakon-employees-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.1.0
  title: Peakon Actions Employees API
  description: The Public Peakon API
servers:
- url: https://{subdomain}.peakon.com/api/v1/
  variables:
    subdomain:
      description: Unique subdomain assigned to your Peakon instance.
      default: api
tags:
- description: Manage employees
  name: Employees
paths:
  /employees:
    get:
      tags:
      - Employees
      summary: Get employees
      parameters:
      - name: filter[account.email]
        schema:
          type: string
        in: query
      - name: filter[accountId]
        schema:
          type: integer
        in: query
      - name: filter[admin]
        schema:
          type: boolean
        in: query
      - name: filter[employeeId]
        schema:
          type: integer
        in: query
      - name: filter[manager]
        schema:
          type: boolean
        in: query
      - name: filter[segmentIds]
        schema:
          type: array
          items:
            type: integer
        in: query
      security:
      - jwt: []
      responses:
        '200':
          description: A [JSONAPI resource](http://jsonapi.org/format/#document-resource-objects) containing an array of 'employees' objects
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/employees'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/resourceIdentifier'
                    description: An array of included JSONAPI resources
    post:
      tags:
      - Employees
      summary: Create employee
      parameters: []
      security:
      - jwt: []
      responses:
        '200':
          description: A [JSONAPI resource](http://jsonapi.org/format/#document-resource-objects) of type 'employees'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/employees'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/resourceIdentifier'
                    description: An array of included JSONAPI resources
  /employees/contexts/{contextId}:
    get:
      tags:
      - Employees
      summary: Get employees for context
      parameters:
      - name: contextId
        description: A company or segment context id. Param is a `string` formatted as `company_[companyId]` or `segment_[segmentId]`.
        required: true
        schema:
          type: string
        in: path
      - name: filter[account.email]
        schema:
          type: string
        in: query
      - name: filter[accountId]
        schema:
          type: integer
        in: query
      - name: filter[admin]
        schema:
          type: boolean
        in: query
      - name: filter[employeeId]
        schema:
          type: integer
        in: query
      - name: filter[manager]
        schema:
          type: boolean
        in: query
      - name: filter[segmentIds]
        schema:
          type: array
          items:
            type: integer
        in: query
      security:
      - jwt: []
      responses:
        '200':
          description: A [JSONAPI resource](http://jsonapi.org/format/#document-resource-objects) of type 'employees'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/employees'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/resourceIdentifier'
                    description: An array of included JSONAPI resources
  /employees/count:
    get:
      tags:
      - Employees
      summary: Get employee count
      parameters:
      - name: filter[account.email]
        schema:
          type: string
        in: query
      - name: filter[accountId]
        schema:
          type: integer
        in: query
      - name: filter[admin]
        schema:
          type: boolean
        in: query
      - name: filter[employeeId]
        schema:
          type: integer
        in: query
      - name: filter[manager]
        schema:
          type: boolean
        in: query
      - name: filter[segmentIds]
        schema:
          type: array
          items:
            type: integer
        in: query
      security:
      - jwt: []
      responses:
        '200':
          description: A JSON response
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    description: The total number of employees in the company
  /employees/contexts/{contextId}/count:
    get:
      tags:
      - Employees
      summary: Get employee count for context
      parameters:
      - name: contextId
        description: A company or segment context id. Param is a `string` formatted as `company_[companyId]` or `segment_[segmentId]`.
        required: true
        schema:
          type: string
        in: path
      - name: filter[account.email]
        schema:
          type: string
        in: query
      - name: filter[accountId]
        schema:
          type: integer
        in: query
      - name: filter[admin]
        schema:
          type: boolean
        in: query
      - name: filter[employeeId]
        schema:
          type: integer
        in: query
      - name: filter[manager]
        schema:
          type: boolean
        in: query
      - name: filter[segmentIds]
        schema:
          type: array
          items:
            type: integer
        in: query
      security:
      - jwt: []
      responses:
        '200':
          description: A JSON response
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    description: The total number of employees in the given context
  /employees/{employeeId}:
    get:
      tags:
      - Employees
      parameters:
      - name: employeeId
        required: true
        description: The id of the employee
        schema:
          type: integer
        in: path
      security:
      - jwt: []
      summary: Get employee
      responses:
        '200':
          description: A [JSONAPI resource](http://jsonapi.org/format/#document-resource-objects) of type 'employees'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/employees'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/resourceIdentifier'
                    description: An array of included JSONAPI resources
    patch:
      tags:
      - Employees
      parameters:
      - name: employeeId
        required: true
        description: The id of the employee
        schema:
          type: integer
        in: path
      security:
      - jwt: []
      summary: Update employee
      responses:
        '200':
          description: A [JSONAPI resource](http://jsonapi.org/format/#document-resource-objects) of type 'employees'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/employees'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/resourceIdentifier'
                    description: An array of included JSONAPI resources
    delete:
      tags:
      - Employees
      parameters:
      - name: employeeId
        required: true
        description: The id of the employee
        schema:
          type: integer
        in: path
      security:
      - jwt: []
      summary: Delete employee
      responses:
        '204':
          description: OK
components:
  schemas:
    resourceIdentifier:
      properties:
        type:
          type: string
        id:
          type: string
      type: object
    employees:
      properties:
        type:
          type: string
        id:
          type: string
        attributes:
          type: object
          properties:
            identifier:
              type: string
            firstName:
              type: string
            lastName:
              type: string
            name:
              type: string
            avatar:
              type: string
            employmentStart:
              type: string
            external:
              type: boolean
        relationships:
          type: object
          properties:
            account:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/resourceIdentifier'
      type: object