Skip to main content
GET
/
reimbursements
/
{reimbursement}
Retrieve a reimbursement
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/reimbursements/{reimbursement} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "reimbursement",
  "data": {
    "work_assignment": {
      "id": "<id>",
      "object": "work_assignment",
      "links": {
        "self": "/work_assignments/<id>"
      }
    },
    "reimbursement_type": {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "non_taxable_reimbursement",
        "label": "Non-Taxable Reimbursement"
      },
      "links": {
        "self": "/reimbursement_types/non_taxable_reimbursement"
      }
    },
    "title": null,
    "title_translations": null,
    "title_translated": null,
    "frequency": "per_payroll",
    "date_basis": null,
    "pay_period_cadence": null,
    "amount": 35,
    "effective_from": "2026-01-01",
    "effective_to": null,
    "business_preset": 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": "/reimbursements/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

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

data
Default · object