Skip to main content

List employee payrolls

GET 

/api/employee-payrolls

Required permissions:

  • payroll.employees: allows view of employee payrolls.

Request

Query Parameters

    limit integer

    Possible values: <= 100

    Default value: 100

    The number of items to include in the response.

    offset integer

    Default value: 0

    The offset of the first returned item.

    updated_at date-time

    Filter items by the updated_at field. This is in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

    Examples:

    Filter items updated on a date.

    Example: 2024-01-01T20:00:00%2B02:00

    employee_id integer

    The ID of the employee to filter the results on.

    business_unit_id integer

    The ID of the business unit to filter the results on.

Header Parameters

    Wethod-Company stringrequired

    The company you want to interact with

    Wethod-Version stringrequired

    The API version you want to use

Responses

Returns the list of employee payrolls.

Schema

  • Array [

  • id integerrequired

    Possible values: >= 1

    The unique identifier of the resource

    created_at date-timerequired

    The date and time when the resource was created

    updated_at date-timerequired

    The date and time when the resource was last updated

    employee_id integerrequired

    The ID of the employee

    business_unit_id integernullable

    The ID of the business unit

    cost floatrequired

    The yearly cost of the employee payroll (excluding taxes)

    taxes integerrequired

    The total taxes of the employee payroll

    from YYYY-MMrequired

    The start date of the employee payroll period

    to YYYY-MMrequired

    The end date of the employee payroll period

  • ]

Loading...