Skip to main content
GET
/
remittance_accounts
/
{remittance_account}
Retrieve a remittance account
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/remittance_accounts/{remittance_account} \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "account_identifier": "123456789RP0001",
    "remitter_type": null,
    "note": null,
    "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

Query Parameters

expand
enum<string>[]
Available options:
business_entity,
remittance_account_enrollments,
source_tax_property

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
Default · object