AristoTelos Academy

External Export Job Parameters

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.

Name of the export method.

Typestring

Output format of the exported data. Example: "Csv".

Typestring

FileParameters

Section

Configuration of the output file location.

PayrollParameters

Section

Payroll-related export configuration.

Use Cases

External Export Job for Export Payroll Time Rules

Use Case

PayrollParameters.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?

External Export Job Parameters | AristoTelos Academy