The payroll item object

Payroll items are created during payroll creation, and may include multiple earnings, reimbursements, and other line items for a single payroll period.

Note only one payroll item is allowed per employee per payroll.

Shared enums: The status field on this object uses the same set of values as the status field on the Payroll object: draft, pending, processing, failed, partially_paid, or paid.

{
    "id": "itm_yvmmsVGFxLoBaMIkqzea",
    "payroll": "pay_Z26PNMC7Ky1wfFQzVqfF",
    "employee": "emp_zGGp6wYcxAeu1Ng8IA7v",
    "status": "draft",
    "payment_method": "direct_deposit",
    "supplemental_tax_calc_method": "flat",
    "net_pay": null,
    "earnings": [
      {
        "amount": "1384.61",
        "hours": 40.0,
        "type": "salaried",
        "workplace": "wrk_qbCnBhUIDzduGrwLJ83p",
        "earning_code": null,
        "description": null,
        "metadata": {}
      }
    ],
    "reimbursements": [
      {
        "amount": "123.43",
        "code": null,
        "description": null
      }
    ],
    "pto_balance_hours": null,
    "sick_balance_hours": null,
    "state_covid_sick_balance_hours": null,
    "taxes": null,
    "benefits": null,
    "benefit_overrides": null,
    "post_tax_deductions": null,
    "post_tax_deduction_overrides": null,
    "warnings": null,
    "paper_check_number": null,
    "paystub_info": {},
    "metadata": {}
}
AttributeDescription
id
string
Unique identifier for the payroll item.
payroll
string
The payroll ID associated with the payroll item.
employee
string
The employee ID associated with the payroll item.
status
string

Status of the payroll item.

One of draft, pending, processing, failed, partially_paid, or paid.

void_of
string

The ID of the payroll item this payroll item is voiding.

Only applicable to voided items

voided_by
string

The ID of the payroll item this payroll item was voided by.

Only applicable to voided items

payment_method
string
May be manual or direct_deposit if the employee has a linked bank account
supplemental_tax_calc_method
string
Controls the method used by Check to calculate tax on supplemental earnings. May be flat or aggregate
pto_balance_hours
float
The employee's remaining PTO hour balance, for display on the paystub. Can be updated even after the associated payroll has been approved.
sick_balance_hours
float
The employee's remaining sick hour balance, for display on the paystub. Can be updated even after the associated payroll has been approved.
state_covid_sick_balance_hours
float
The employee's remaining sick hour balance from state COVID relief bills, for display on the paystub. This field is currently only applicable to California employers as per SB-95. When the requirement expires, this field will be removed in a future API version
net_pay
string
Read only. The total amount of net pay earned by the employee for this payroll item. The formula for net pay is gross pay - employee taxes - employee benefit contributions - imputed income - post-tax deductions + reimbursements
net_pay_split
string
The net pay split ID associated with this payroll item.
earnings
array of objects
The set of earnings objects associated with the payroll item.
reimbursements
array of objects
The set of non-taxable reimbursements objects associated with the payroll item.
taxes
array of objects

Read only. An array of tax line items associated with the payroll item.

Each tax object contains:
  • tax (string): Unique identifier for the tax.
  • description (string): Human-readable name of the tax (e.g., "Federal Income Tax", "Employer FICA Tax").
  • amount (string): Dollar amount of the tax.
  • payer (string): Who is responsible for the tax. One of employee or company.
benefits
array of objects

Read only. An array of benefit line items associated with the payroll item.

Each benefit object contains:
  • benefit (string): ID of the employee benefit.
  • description (string): Human-readable name of the benefit.
  • employee_amount (string): Dollar amount of the employee's contribution.
  • company_amount (string): Dollar amount of the company's contribution.
benefit_overrides
array of objects

The set of benefit override objects associated with this payroll item.

Each benefit override object contains:
  • benefit (string, required): ID of the employee benefit being overridden.
  • employee_contribution_amount (string): Updated employee contribution amount for this payroll only.
  • company_contribution_amount (string): Updated company contribution amount for this payroll only.
post_tax_deductions
array of objects

Read only. An array of post-tax deduction line items associated with the payroll item.

Each post-tax deduction object contains:
  • post_tax_deduction (string): ID of the post-tax deduction.
  • description (string): Human-readable name of the deduction.
  • amount (string): Dollar amount of the deduction.
post_tax_deduction_overrides
array of objects

The set of post-tax deduction override objects associated with this payroll item.

Each post-tax deduction override object contains:
  • post_tax_deduction (string, required): ID of the post-tax deduction being overridden.
  • amount (string, required): Updated deduction amount for this payroll only.
warnings
array of objects
Read only. An array of warning objects associated with the payroll item.
paper_check_number
string
For accounting. The check number associated with any printed checks. Can be updated even after the associated payroll has been approved. See Get a paper check for more details.
paystub_info
object
Loosely structured key-value information that will be returned on paystubs generated for this payroll item. Limited to 15 keys, and 500 total characters (combined length of keys and values). Keys and values are both strings. Example: {"Employee ID": "12345", "Department": "Engineering"}.
metadata
object
Additional loosely structured information to associate with the payroll item.