5 endpoints

# Salaries

Employee salary history, current salary, and salary management.

GET`/employees/{uuid}/salaries`Get Current SalaryGet the current active salary record for an employee.

GET`/employees/{uuid}/salaries/history`Salary HistoryGet the full salary history for an employee (requires employee.view_salary permission).

POST`/employees/{uuid}/salaries`Set / Update SalaryCreate a new salary record. Automatically ends the previous salary on the day before valid_from.

PUT`/employees/{uuid}/salaries/{salary_uuid}`Update Salary RecordUpdate an existing salary record (e.g. correct an effective date).

DELETE`/employees/{uuid}/salaries/{salary_uuid}`Delete Salary RecordRemove a salary record. The previous record becomes current again.

---

**URL:** https://cube-hr.co.uk/docs/salaries
