---
title: "Create employee additional compensation"
method: POST
path: "/employees/{employee_id}/additional_compensations"
tags: ["Employees"]
---

# Create employee additional compensation

`POST /employees/{employee_id}/additional_compensations`

Create additional compensations for an employee

## Request body

- object
  - `compensation_type_id` integer, required
  - `amount` number, required
  - `starts_on` string, date, required
  - `ends_on` string, date — Optional for only if additional compensation is reoccuring.
  - `currency_code` string, required — Currency code 3 character alphabetic and 3 digit numeric ISO 4217
  - `description` string
  - `type` 'fixed' | 'reoccurring', required
  - `frequency` 'daily' | 'monthly' | 'quarterly' | 'half_yearly' | 'yearly' — Required if type is reoccurring.

## Response `200`

OK

- object
  - `data` EmployeeAdditionalCompensation
    - `id` integer, required
    - `compensation_type` object, required
      - `id` integer, required
      - `name` string, required
    - `type` string, required
    - `description` string
    - `frequency` string, required
    - `amount` string, required
    - `currency_code` string, required
    - `starts_on` string, date, required
    - `ends_on` string, date
    - `created_at` string, date-time
    - `updated_at` string, date-time

---

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