Viewing Available Tax Properties
Resources that support Tax Properties include anavailable_tax_properties attribute. This attribute contains a list of Tax Property keys that can be managed for the specific resource instance.
For example, when retrieving a Business Entity, the available_tax_properties attribute lists Template keys that can be used to create Tax Properties for the Business Entity.
Request
Response
/tax_property_templates endpoint. The response provides detailed information about the template, including:
label: A user-friendly display name for the Tax Property.format: The expected data format for the value (e.g.,string,boolean,numeric,date).options: If the Tax Property accepts only specific values, they will be listed as key-value pairs.allow_concurrent: Indicates whether multiple active Tax Properties can coexist for the same entity during overlapping date periods.nullable: Specifies whether the value can be set tonull.
Creating a Tax Property
Use the/tax_properties endpoint to create a new Tax Property. Required parameters include:
owner_id: The ULID of the resource (e.g., Business Entity or Work Assignment) associated with the Tax Property.type: The templatetypevalue (e.g.,ca::province_of_employment,ca::mb::eht).effective_from: The date this Tax Property becomes effective. Tax Properties are applied based on their effective dates relative to thepay_dateof a payroll.
Request
Managing Tax Properties
Tax Properties are essential for calculating accurate taxes, contributions, and withholdings for employees and employers. They follow these rules:- Locked after payroll approval: Tax Properties cannot be updated or deleted once a payroll that uses the property is marked as
approved. - Editable attributes: The
is_editableattribute determines if a Tax Property can be modified. Iffalse, only theeffective_todate can be updated.
allow_concurrent attribute from its template:
- If
allow_concurrentistrue, you can create multiple Tax Properties for the same entity that overlap by date. - If
allow_concurrentisfalse, you must delete or end the existing Tax Property before creating a new one. The neweffective_fromdate must be after the previous Tax Property’seffective_todate.
Ending a Tax Property
To end the effectiveness of a Tax Property, set itseffective_to date. This determines the last date the property will apply to payroll tax calculations.
The Tax Property remains active for all relevant payrolls with a pay_date between the effective_from and effective_to dates, inclusive.
When setting the effective_to date, it must not be earlier than the earliest_valid_effective_to, which is determined by how the property has been used:
- The
effective_fromdate, if the Tax Property has never been used in an approved payroll. - The
pay_dateof the most recent payroll that used it.
📘 Pay Dates and Tax Properties
A Tax Property cannot be ended before the pay_date of the most recent payroll that used it. This is because tax calculations are based on the date the employee is paid, not when the work was performed.
Tax Property Priority
Some Tax Properties may be set at both the Business Entity and Work Assignment levels. Priority rules determine which value is applied:- Generally, Work Assignment Tax Properties take precedence over Business Entity Tax Properties when both are active for a given Payroll Pay Date.
Example
If theca::province_of_employment Tax Property is set for both a Business Entity and a Work Assignment, the Work Assignment value is used to calculate provincial taxes for the employee.
