Skip to main content
PUT
/
employer_benefits
/
{employer_benefit}
Update an employer benefit
curl --request PUT \
  --url https://sandbox.nmbr.co/services/payroll/employer_benefits/{employer_benefit} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "business_preset_id": "<string>",
  "remittance_account_id": "<string>",
  "amount": 1,
  "income_includes": [
    {
      "subtype": "<string>"
    }
  ],
  "coverage_multiplier": 50,
  "max_annual_contribution": 49999.5,
  "effective_from": "2023-12-25",
  "effective_to": "2023-12-25",
  "apply_sales_tax": true,
  "expense_accounting_code_id": "<string>",
  "liability_accounting_code_id": "<string>",
  "title": "<string>",
  "title_translations": {
    "en": "<string>",
    "fr": "<string>"
  },
  "external_ref": "<string>",
  "tag_assignment": {
    "unit": "percentage",
    "is_component_locked": true,
    "tag_allocations": [
      {
        "tags": [
          "<string>"
        ],
        "value": 1
      }
    ]
  },
  "pay_period_cadence": [
    123
  ]
}
'
{
  "id": "<id>",
  "object": "employer_benefit",
  "data": {
    "work_assignment": {
      "id": "<id>",
      "object": "work_assignment",
      "links": {
        "self": "/work_assignments/<id>"
      }
    },
    "business_preset": null,
    "employer_benefit_type": {
      "id": "<id>",
      "object": "employer_benefit_type",
      "data": {
        "type": "health",
        "label": "Health"
      },
      "links": {
        "self": "/employer_benefit_types/health"
      }
    },
    "employee_benefit": null,
    "title": null,
    "title_translations": null,
    "title_translated": null,
    "apply_sales_tax": true,
    "income_basis": "regular_earnings",
    "income_includes": [],
    "remittance_account_id": null,
    "remittance_account": null,
    "amount": 50,
    "amount_type": "fixed",
    "coverage_multiplier": 1,
    "max_annual_contribution": null,
    "max_annual_contribution_basis": "this_benefit",
    "frequency": "per_payroll",
    "date_basis": null,
    "pay_period_cadence": null,
    "effective_from": "2026-01-01",
    "effective_to": null,
    "expense_accounting_code": null,
    "liability_accounting_code": null,
    "external_ref": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/employer_benefits/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

employer_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 ("employer_benefit").

data
Employer Benefit · object