External Export Job Parameters
Jobs for exporting data to an external system or file using a specific export method.
Additional fields
- SiteIds
(array[int] | null)
List of site IDs included in the export. - OvertimeExportDay
(integer | null)
Day of month used for overtime export. - EmailParameters
(object | null)
Optional email configuration for sending export results. - FtpParameters
(object | null)
Optional FTP configuration for transferring exported files.
FileParameters
SectionConfiguration of the output file location.
PayrollParameters
SectionPayroll-related export configuration.
Use Cases
External Export Job for Export Payroll Time Rules
Use CasePayrollParameters.SkipLastDaysInMonth and PayrollParameters.OvertimeExportDay fields control which time period is included in the payroll export.
Exclude last days of month from payroll export
Useful when payroll exports should ignore the last days of the month during payroll closing.
{
"PayrollParameters": {
"SkipLastDaysInMonth": 3
}
}
Set overtime export cutoff day
Useful when overtime calculations use a custom payroll cutoff date instead of the calendar month.
{
"PayrollParameters": {
"OvertimeExportDay": 26
}
}
Combine payroll cutoff day with excluded end-of-month days
Useful when payroll exports follow custom payroll periods
{
"PayrollParameters": {
"OvertimeExportDay": 26,
"SkipLastDaysInMonth": 3
}
}
Was this helpful?
