---
title: "Write Payroll Supplement"
method: POST
path: "/custom/silae/employees/{employee_id}/payroll-supplements"
tags: ["Custom Endpoints"]
---

# Write Payroll Supplement

`POST /custom/silae/employees/{employee_id}/payroll-supplements`

Write a payroll supplement to Silae using the supplement code.

<Note>
  This endpoint requires the permission **Manage payroll** to be enabled in [your scope config](/scopes).
</Note>

### Example Request Body

```json
{
  "employee_id": "EvLV61zdahkN4ftPJbmPCkdv",
  "supplement_code": "200",
  "effective_date": "2024-01-14",
  "element_amount": 6
}
```

## Path parameters

- `employee_id` string, required — ID of the employee that should be updated. You can use their Kombo `id` or their ID in the remote system by prefixing it with `remote:` (e.g., `remote:12312`)

## Headers

- `X-Integration-Id` string, required

## Request body

- PostCustomSilaeEmployeesEmployeeIdPayrollSupplementsRequestBody
  - `supplement_code` string, required — The ID code of the supplement that you want to add to Silae.
  - `effective_date` string, date-time, required — Date from which the submitted supplement should be active.
  - `element_amount` number, double — The amount of the supplement if it requires a number.
  - `element_string` string — The string of the supplement if it requires a string.

## Response `200`

POST /custom/silae/employees/:employee_id/payroll-supplements Positive response

- PostCustomSilaeEmployeesEmployeeIdPayrollSupplementsPositiveResponse
  - `status` 'success', required
  - `data` object, required
  - `warnings` object[], required — These are the interaction warnings that are shown in the dashboard. They are meant to provide debug information to you. We recommend logging them to the console.
    - `message` string, required

## Other responses

- `default` — The standard error response with just the platform error codes.

---

[API](https://skmtc.net/kombo/apis/kombo-api.md) · [All operations](https://skmtc.net/kombo/apis/kombo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kombo/kombo-api/versions/1e45035b96d3/schema)
