Create a payroll wage item
Creates a new payroll wage item.
post/quickbooks-desktop/payroll-wage-items
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"name": "Regular Pay",
"isActive": true,
"wageType": "hourly_regular",
"overtimeMultiplier": "1.5",
"rate": "15.00",
"ratePercent": "10",
"expenseAccountId": "80000001-1234567890"
}Response
Returns the newly created payroll wage item.
Example response
{
"id": "80000001-1234567890",
"objectType": "qbd_payroll_wage_item",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"name": "Regular Pay",
"isActive": true,
"wageType": "hourly_regular",
"expenseAccount": {
"id": "80000001-1234567890",
"fullName": "Expenses:Payroll"
},
"overtimeMultiplier": "1.5",
"rate": "15.00",
"ratePercent": "10"
}