Skip to main content
GET
/
allowances
/
{allowance}
Retrieve an allowance
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/allowances/{allowance} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "allowance",
  "data": {
    "work_assignment": {
      "id": "<id>",
      "object": "work_assignment",
      "links": {
        "self": "/work_assignments/<id>"
      }
    },
    "allowance_type": {
      "id": "<id>",
      "object": "allowance_type",
      "data": {
        "type": "cell_phone_allowance",
        "label": "Cell phone allowance"
      },
      "links": {
        "self": "/allowance_types/cell_phone_allowance"
      }
    },
    "title": "Cell phone allowance",
    "title_translations": {
      "en": "Cell phone allowance",
      "fr": "Allocation de téléphone cellulaire"
    },
    "title_translated": "Cell phone allowance",
    "amount": 75.25,
    "frequency": "per_month",
    "date_basis": "by_period_start_date",
    "pay_period_cadence": [
      1
    ],
    "effective_from": "2026-01-01",
    "effective_to": "2026-12-31",
    "business_preset": null,
    "expense_accounting_code": null,
    "liability_accounting_code": null,
    "external_ref": "01KFNHG3MNRS84XF1ERW0M7HP0",
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/allowances/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

allowance
string
required

Query Parameters

expand
enum<string>[]
Available options:
business_preset,
expense_accounting_code,
liability_accounting_code,
tag_assignment,
work_assignment

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

data
Default · object