---
title: "Creates a new salary entry for a given employee."
method: POST
path: "/people/{id}/salaries"
tags: ["Employee Tables"]
---

# Creates a new salary entry for a given employee.

`POST /people/{id}/salaries`

## Path parameters

- `id` string, required

## Request body

- SalaryEntry
  - `canBeDeleted` boolean — internal flag
  - `workChangeType` string — The type of the change that was performed for this work entry. This will contain the ID of the value from the Change Type list.
  - `change` object — Details of the last change and the ID of the user who updated this entry
    - `reason` string
    - `changedBy` string
    - `changedById` string
  - `payFrequency` string — Represents the frequency the salary is paid. This can be one of: Monthly, Semi Monthly, Weekly, or Bi-Weekly.
  - `creationDate` string, date — The date this entry was created.
  - `isCurrent` boolean — Is 'true' when this is the effective entry which is currently active.
  - `modificationDate` string, date — The date this entry was modified.
  - `id` integer — The id of the entry.
  - `endEffectiveDate` string, date — For entries that are not active - this is the date this entry became not effective.
  - `activeEffectiveDate` string, date — The active effective date for this entry.
  - `customColumns` object — If the table has custom columns, they will appear here.
  - `base` CurrencyValue, required
    - `value` number, double, required
    - `currency` string, required — Three-letter currency code.
  - `payPeriod` string, required — Represents the period for this salary entry. This can be one of: Annual, Hourly, Daily, Weekly, Monthly.
  - `effectiveDate` string, date — The date this entry becomes effective. This is a mandatory field for a work entry.

## Response `200`

Entry added successfully.

---

[API](https://skmtc.net/hibob/apis/employee-data-api.md) · [All operations](https://skmtc.net/hibob/apis/employee-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hibob/employee-data-api/versions/0781ebbdda91/schema)
