Employee Salary Template

These endpoints let you manage salary templates specific to employees in the system. It allows you to retrieve, create, update, and delete employee-specific salary template records.

Get Latest Employee Salary Template

get

Return the latest employee salary templates.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
idstringRequiredExample: f47ac10b-58cc-4372-a567-0e02b2c3d479
Responses
chevron-right
200

OK

application/json
idstringOptional
effectiveDatestringOptional
proportionalbooleanOptional
retroactivebooleanOptional
salaryDecreeNumberstringOptional
salaryTemplateIdstringOptional
get
/core/v1/employees/{id}/employee-salary-templates

Create or Update Employee Salary Template

patch

Create or update the employee salary template.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
idstringRequired

<employee.id> or identificationNumber=<employee.identificationNumber>

Example: {"summary":"Using <employee.id>","value":"c2424497-9c63-46d1-88e4-6b4ebe399866"}
Body
effectiveDatestringRequired
proportionalbooleanRequired
retroactivebooleanRequired
salaryDecreeNumberstringRequired
salaryTemplateIdstringRequired
Responses
chevron-right
200

OK

application/json
employeeIdstringOptional
patch
/core/v1/employees/{id}/employee-salary-templates

Get Effective Employee Salary Template

get

Return the effective employee salary template.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
idstringRequiredExample: f47ac10b-58cc-4372-a567-0e02b2c3d479
Query parameters
yearnumberOptionalExample: 2024
monthnumberOptionalExample: 1
Responses
chevron-right
200

OK

application/json
totalPagesintegerRequired

Total number of pages available

lastbooleanRequired

Indicates whether this is the last page

totalElementsintegerRequired

Total number of elements across all pages

numberOfElementsintegerRequired

Number of elements in the current page

firstbooleanRequired

Indicates whether this is the first page

sizeintegerRequired

Size of the page (number of elements per page)

numberintegerRequired

Current page number (zero-indexed)

get
/core/v1/employees/{id}/employee-salary-templates/effective

Last updated