Skip to main content
PUT
/
remittance_accounts
/
{remittance_account}
Update a remittance account
curl --request PUT \
  --url https://sandbox.nmbr.co/services/payroll/remittance_accounts/{remittance_account} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "CRA Payroll Account - Main",
  "account_identifier": "123456789RP0002",
  "remitter_type": "accelerated_threshold_1",
  "note": "Updated main payroll remittance account",
  "address_line_1": "555 MacKenzie Ave",
  "city": "Ottawa",
  "province_code": "ON",
  "country_code": "CA",
  "postal_code": "K1A 0L5"
}
'
{
  "id": "<id>",
  "object": "remittance_account",
  "data": {
    "business_entity": {
      "id": "<id>",
      "object": "business_entity",
      "links": {
        "self": "/business_entities/<id>"
      }
    },
    "source_tax_property": {
      "id": "<id>",
      "object": "tax_property",
      "links": {
        "self": "/tax_properties/<id>"
      }
    },
    "account_provider": "ca_cra",
    "is_default": false,
    "is_editable": true,
    "is_deletable": true,
    "category": "ca_tax_agency",
    "label": "CRA Payroll Account - Main",
    "account_identifier": "123456789RP0002",
    "remitter_type": "accelerated_threshold_1",
    "note": "Updated main payroll remittance account",
    "address_line_1": "555 MacKenzie Ave",
    "address_line_2": null,
    "city": "Ottawa",
    "province_code": "ON",
    "country_code": "CA",
    "postal_code": "K1A 0L5",
    "has_payments": false,
    "current_enrollments_count": 0,
    "pending_enrollments_count": 0,
    "metadata": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/remittance_accounts/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

remittance_account
string
required

Body

application/json
is_default
boolean
account_provider
string
category
enum<string>
Available options:
ca_benefit_provider,
ca_provincial_government,
ca_tax_agency,
ca_union,
ca_workers_compensation
label
string
Maximum string length: 255
account_identifier
string | null

Editing is prevented when is_editable is false

Maximum string length: 255
remitter_type
enum<string>
Available options:
accelerated_threshold_1,
accelerated_threshold_2,
quarterly,
regular
note
string | null
address_line_1
string | null
Maximum string length: 30
address_line_2
string | null
Maximum string length: 30
city
string | null
Maximum string length: 28
province_code
string | null

In Canada, must be an uppercase 2-letter province code: AB, BC, MB, NB, NL, NS, NT, NU, ON, PE, QC, SK, YT

country_code
string | null

Must be an uppercase 2-letter country code (ISO 3166-1 alpha-2, e.g., CA).

postal_code
string | null
Maximum string length: 10
metadata
Workers’ compensation · object

Additional data points for this account. The available fields depend on the account's category; null for categories that capture no metadata.

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

data
Remittance Account · object