Skip to main content
PUT
/
employee_benefits
/
{employee_benefit}
Update an employee benefit
curl --request PUT \
  --url https://sandbox.nmbr.co/services/payroll/employee_benefits/{employee_benefit} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "325.5",
  "amount_type": "fixed",
  "income_basis": "regular_earnings",
  "coverage_multiplier": "1",
  "max_annual_contribution": "2500.5",
  "max_annual_contribution_basis": "this_benefit",
  "frequency": "per_month",
  "effective_from": "2026-01-01",
  "effective_to": "2026-12-31",
  "apply_sales_tax": false,
  "title": "Dental",
  "title_translations": {
    "en": "Dental",
    "fr": "Assurance dentaire"
  },
  "external_ref": "01KG003XG877R33YKHA40HJP84",
  "date_basis": "by_period_start_date",
  "pay_period_cadence": [
    1
  ]
}
'
{
  "id": "<id>",
  "object": "employee_benefit",
  "data": {
    "work_assignment": {
      "id": "<id>",
      "object": "work_assignment",
      "links": {
        "self": "/work_assignments/<id>"
      }
    },
    "business_preset": null,
    "employee_benefit_type": {
      "id": "<id>",
      "object": "employee_benefit_type",
      "data": {
        "type": "dental",
        "label": "Dental"
      },
      "links": {
        "self": "/employee_benefit_types/dental"
      }
    },
    "employer_benefit": null,
    "title": "Dental",
    "title_translations": {
      "en": "Dental",
      "fr": "Assurance dentaire"
    },
    "title_translated": "Dental",
    "income_basis": "regular_earnings",
    "income_includes": [],
    "max_annual_contribution_basis": "this_benefit",
    "apply_sales_tax": false,
    "remittance_account_id": null,
    "remittance_account": null,
    "amount": 325.5,
    "amount_type": "fixed",
    "coverage_multiplier": 1,
    "max_annual_contribution": 2500.5,
    "frequency": "per_month",
    "date_basis": "by_period_start_date",
    "pay_period_cadence": [
      1
    ],
    "effective_from": "2026-01-01",
    "effective_to": "2026-12-31",
    "expense_accounting_code": null,
    "liability_accounting_code": null,
    "external_ref": "01KG003XG877R33YKHA40HJP84",
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/employee_benefits/<id>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employee_benefit
string
required

Body

application/json
business_preset_id
string
remittance_account_id
string

The remittance account to which collected benefit amounts are remitted.

amount
number<decimal>

The contribution amount per pay period. When amount_type is percent, this is interpreted as a percentage of the income basis (0-100); otherwise as a fixed dollar amount.

Required range: x >= 0
amount_type
enum<string>

Whether amount is a fixed dollar value (fixed) or a percentage of the income basis (percent).

Available options:
fixed,
percent
income_basis
enum<string>

Determines the income used as the base for percentage-based benefit calculations. regular_earnings includes only salary and wage earnings. all_earnings includes all earnings. total_income includes all earnings, taxable allowances, and taxable reimbursements. none doesn't include any line items, and can be used with income_includes for completely custom definitions of income.

Available options:
all_earnings,
none,
regular_earnings,
total_income
income_includes
object[]

An optional list of specific earnings, allowances, and other line item types to include in the income calculation in addition to those included via income_basis.

coverage_multiplier
number<decimal>

A multiplier applied to the Employee's earnings to determine the benefit coverage amount, used for coverage-based benefits such as life insurance.

Required range: 0 <= x <= 100
max_annual_contribution
number<decimal>

The maximum dollar amount that will be contributed in a calendar year. Contributions stop once this limit is reached.

Required range: 0 <= x <= 99999
max_annual_contribution_basis
enum<string>

Whether max_annual_contribution accumulates across pay periods or applies as a fixed per-period cap.

Available options:
all_line_items_of_type,
this_benefit
frequency
enum<string>

The frequency at which this benefit is applied to Pay Stubs. When per_month, the amount is distributed across the selected Payrolls in the calendar month. per_month requires amount_type to be fixed.

Available options:
once,
per_month,
per_payroll
effective_from
string<date>

The date from which this benefit is applied to Pay Stubs.

effective_to
string<date>

The date after which this benefit is no longer applied. null if the benefit applies indefinitely.

apply_sales_tax
boolean

Whether provincial sales tax is applied to the benefit amount.

expense_accounting_code_id
string
liability_accounting_code_id
string
title
string | null
Maximum string length: 255
title_translations
object

Optional translations for the title property.

external_ref
string
Maximum string length: 255
tag_assignment
object
date_basis
enum<string>

Which payroll date determines the calendar month for the allocation. Applies only to per_month benefits.

Available options:
by_pay_date,
by_period_end_date,
by_period_start_date
pay_period_cadence
integer[]

Which pay periods within the month receive the allocation. An array of 1-based positions; -1 is the final period. Applies only to per_month benefits.

Minimum array length: 1

Response

200 - application/json

OK

id
string
read-only

The unique identifier of the object in Nmbr.

object
string
read-only

The type of the object in Nmbr ("employee_benefit").

data
Employee Benefit · object