ZRM Docs
API ReferenceTax Agency

taxAgency.create

Type: Mutation · Auth: Workspace-aware

Input

FieldTypeRequiredDefaultDescription
namestringYesName
codestringNoCode
jurisdictionTypeenum(state, county, city, special_district)YesJurisdiction type
ratenumberYesRate
descriptionstringNoDescription
isActivebooleanYestrueIs active
taxableCategoriesstring[]Yes["material","subcontract","other"]Taxable categories
workspaceIdstringNoID of the associated workspace

Example

{
  "name": "Example Name",
  "code": "example",
  "jurisdictionType": "state",
  "rate": 0,
  "description": "A description",
  "isActive": true,
  "taxableCategories": [
    "material",
    "subcontract",
    "other"
  ]
}

On this page