KolayIK · Arazzo Workflow

Onboard an employee in Kolay İK

Version 1.0.0

Discover the tenant's custom person fields and org tree, create the person, verify the stored record, and assign onboarding training.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CompanyHuman ResourcesHRPayrollHCMEmployee ManagementTime and AttendanceApplicant TrackingSoftware-as-a-ServiceTurkeyArazzoWorkflows

Provider

kolayik

Workflows

onboardEmployee
Create an employee and complete onboarding basics.
7 steps inputs: contractType, employmentStartDate, firstName, lastName, trainingSearch, workEmail outputs: personId
1
discoverDataFields
List the custom person data field tokens configured for this tenant.
2
readUnitTree
Read the organizational tree so the new hire can be assigned to real unit items.
3
createPerson
Create the employee record.
4
verifyPerson
Read the stored record back.
5
findTraining
Find the onboarding training in the catalogue.
6
assignTraining
Assign the onboarding training to the new employee.
7
confirmTrainings
Confirm the assignment landed on the person.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Onboard an employee in Kolay İK
  version: 1.0.0
  summary: Discover the tenant's custom person fields and org tree, create the person, verify the stored record, and assign onboarding training.
  description: >-
    Every operationId below exists verbatim in openapi/kolayik-public-api-openapi.yml,
    which is a faithful conversion of the official Kolay Public API Postman collection.
    Kolay publishes no sandbox — running this workflow against a real token creates a
    real employee record.
sourceDescriptions:
- name: personApi
  url: ../openapi/kolayik-person-api-openapi.yml
  type: openapi
- name: trainingApi
  url: ../openapi/kolayik-training-api-openapi.yml
  type: openapi
- name: unitApi
  url: ../openapi/kolayik-unit-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboardEmployee
  summary: Create an employee and complete onboarding basics.
  inputs:
    type: object
    required: [firstName, lastName]
    properties:
      firstName:
        type: string
      lastName:
        type: string
      workEmail:
        type: string
      employmentStartDate:
        type: string
        description: YYYY-MM-DD
      contractType:
        type: string
        enum: [definite, indefinite]
      trainingSearch:
        type: string
        description: Title fragment used to find the onboarding training.
  steps:
  - stepId: discoverDataFields
    description: List the custom person data field tokens configured for this tenant.
    operationId: personShowAvailableDataFields
    successCriteria:
    - condition: $statusCode == 200
  - stepId: readUnitTree
    description: Read the organizational tree so the new hire can be assigned to real unit items.
    operationId: unitShowUnitTree
    successCriteria:
    - condition: $statusCode == 200
  - stepId: createPerson
    description: Create the employee record.
    operationId: personCreate
    requestBody:
      contentType: application/json
      payload:
        person:
          firstName: $inputs.firstName
          lastName: $inputs.lastName
          workEmail: $inputs.workEmail
          employmentStartDate: $inputs.employmentStartDate
          contractType: $inputs.contractType
        options:
          sendWelcomeEmail: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      personId: $response.body#/data/person/id
  - stepId: verifyPerson
    description: Read the stored record back.
    operationId: personView
    parameters:
    - name: id
      in: path
      value: $steps.createPerson.outputs.personId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: findTraining
    description: Find the onboarding training in the catalogue.
    operationId: trainingList
    parameters:
    - name: search
      in: query
      value: $inputs.trainingSearch
    - name: limit
      in: query
      value: '10'
    successCriteria:
    - condition: $statusCode == 200
  - stepId: assignTraining
    description: Assign the onboarding training to the new employee.
    operationId: personAssignTraining
    successCriteria:
    - condition: $statusCode == 200
  - stepId: confirmTrainings
    description: Confirm the assignment landed on the person.
    operationId: personListTrainings
    parameters:
    - name: id
      in: path
      value: $steps.createPerson.outputs.personId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    personId: $steps.createPerson.outputs.personId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/kolayik-onboard-employee"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

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

Get an API key

Free tier, no email required.

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