v1

latestOpenAPI 3.1.02026-07-2414339465.7 KB

Generate Employee Tax Parameter Definitions

Retrieve all tax parameters used for withholding calculations.

post/employees/getTaxParameterDefinitions

Request body

jurisdictionsstring[] required

"US" for federal or a US State (2 letter abbreviation)

Response

200

successboolean

Example response

{
  "success": true,
  "data": {
    "US": [
      {
        "code": "FILINGSTATUS",
        "label": "Filing Status",
        "effectiveDate": "2020-01-01T00:00:00.000Z",
        "type": "options",
        "options": [
          {
            "code": "S",
            "name": "Single or Married filing separately",
            "effectiveDate": 2020
          }
        ],
        "defaults": [
          {
            "effectiveDate": 2020,
            "code": "S"
          }
        ]
      }
    ]
  }
}