Skip to main content
GET
/
reimbursement_types
List reimbursement types
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/reimbursement_types \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "health_spending_account",
        "label": "Health Spending Account (HSA)"
      },
      "links": {
        "self": "/reimbursement_types/health_spending_account"
      }
    },
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "non_taxable_reimbursement",
        "label": "Non-Taxable Reimbursement"
      },
      "links": {
        "self": "/reimbursement_types/non_taxable_reimbursement"
      }
    },
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "professional_membership",
        "label": "Professional Membership"
      },
      "links": {
        "self": "/reimbursement_types/professional_membership"
      }
    },
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "taxable_reimbursement",
        "label": "Taxable Reimbursement"
      },
      "links": {
        "self": "/reimbursement_types/taxable_reimbursement"
      }
    },
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "transit_pass",
        "label": "Transit Pass"
      },
      "links": {
        "self": "/reimbursement_types/transit_pass"
      }
    },
    {
      "id": "<id>",
      "object": "reimbursement_type",
      "data": {
        "type": "wellness_spending_account",
        "label": "Wellness Spending Account (WSA)"
      },
      "links": {
        "self": "/reimbursement_types/wellness_spending_account"
      }
    }
  ],
  "links": {
    "first": "/reimbursement_types?page=1",
    "last": "/reimbursement_types?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 6,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

object
string
read-only

The type of the object in Nmbr ("list").

data
object[]