Silae Payroll
Write Payroll Supplement
Write a payroll supplement to Silae using the supplement code.
POST
/
custom
/
silae
/
employees
/
{employee_id}
/
payroll-supplements
Authorization
Header
Path
Body
curl --request POST \
--url https://api.kombo.dev/v1/custom/silae/employees/{employee_id}/payroll-supplements \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"supplement_code": "200",
"effective_date": "2024-01-14",
"element_amount": 6
}'
{
"status": "success",
"data": {}
}
This endpoint requires the permission Manage payroll to be enabled in your scope config.
Example Request Body
{
"employee_id": "EvLV61zdahkN4ftPJbmPCkdv",
"supplement_code": "200",
"effective_date": "2024-01-14",
"element_amount": 6
}
Authorizations
Authorization
string
headerrequiredCreate an API key on the Secrets page in the Kombo dashboard.
Headers
X-Integration-Id
string
requiredID of the integration you want to interact with.
Path Parameters
employee_id
string
requiredID 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
)
Body
application/json
supplement_code
string
requiredThe ID code of the supplement that you want to add to Silae.
effective_date
string
requiredDate from which the submitted supplement should be active.
element_amount
number
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 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
requiredcurl --request POST \
--url https://api.kombo.dev/v1/custom/silae/employees/{employee_id}/payroll-supplements \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"supplement_code": "200",
"effective_date": "2024-01-14",
"element_amount": 6
}'
{
"status": "success",
"data": {}
}