GuidesAPI ReferenceChangelogAPI PolicyAPI StatusGusto Security
API Reference
These docs are for v2023-09-01. Click to read the latest docs for v2024-04-01.

Get State Tax Requirements

Get all tax requirements for a given state.

Metadata Examples

{ "type": "select", "options": [ { "label": "Semiweekly", value: "Semi-weekly" }, { "label": "Monthly", value: "Monthly" }, { "label": "Quarterly", value: "Quarterly" }, ] }
{ "type": "radio", "options": [ { "label": "No, we cannot reimburse", value: false, short_label: "Not Reimbursable" }, { "label": "Yes, we can reimburse", value: true, short_label: "Reimbursable" }, ] }
{ "type": "account_number", "mask": "######-##', "prefix": null }
{ "type": "tax_rate", "validation": { "type": "min_max", "min": "0.0004", "max": "0.081" } }

scope: company_tax_requirements:read

Path Params
string
required

The UUID of the company

string
required

2-letter US state abbreviation

Query Params
boolean

When true, return "new" requirement sets with valid effective_from dates that are available to save new effective dated values.

Headers
string

Determines the date-based API version associated with your API call. If none is provided, your application's minimum API version is used.

Responses

Response body
object
string
string

One of the two-letter state abbreviations for the fifty United States and the District of Columbia (DC)

requirement_sets
array of objects
requirement_sets
object
string

One of the two-letter state abbreviations for the fifty United States and the District of Columbia (DC)

string

An identifier for a set of requirements. A list of requirement sets can contain multiple sets with the same key and different effective_from values.

string

Customer facing label for the requirement set, e.g. "Registrations"

string | null

An ISO 8601 formatted date representing the date values became effective. Some requirement sets are effective dated, while others are not. Multiple requirement sets for the same state/key can/will exist with unique effective dates. If a requirement set is has an effective_from value, all requirement sets with the same key will also have an effective_from value.

requirements
array of objects
requirements
object
string

An identifier for an individual requirement. Uniqueness is guaranteed within a requirement set.

applicable_if
array of objects

An array of references to other requirements within the requirement set. This requirement is only applicable if all referenced requirements have values matching the corresponding value. The primary use-case is dynamically hiding and showing requirements as values change. E.g. Show Requirement-B when Requirement-A has been answered with false. To be explicit, an empty array means the requirement is applicable.

applicable_if
object
string

An identifier for an individual requirement. Uniqueness is guaranteed within a requirement set.

The required value of the requirement identified by key

string

A customer facing description of the requirement

string

A more detailed customer facing description of the requirement

string

The "answer"

metadata
object
404

Not Found

The requested resource does not exist. Make sure the provided ID/UUID is valid.

Language
Credentials