Object Overview

The Workplace Object

A workplace represents a payroll work location used for tax jurisdiction purposes. Employees on payroll or premium plans are assigned to a workplace that determines which state and local tax rules apply.


Returned by

EndpointShape
GET /workplacesList of workplaces
GET /workplaces/:workplace_idSingle workplace

Field Reference

FieldTypeDescription
workplace_idstringUnique workplace identifier.
line1stringAddress line 1.
line2string | nullAddress line 2 (suite, unit, etc.).
citystringCity.
statestringTwo-letter state code.
postal_codestringPostal / ZIP code.
countrystringTwo-letter country code.
activebooleanWhether the workplace is currently active.

Example

{
  "workplace_id": "wrk_1a2b3c4d5e6f",
  "line1": "123 Main Street",
  "line2": "Suite 200",
  "city": "San Francisco",
  "state": "CA",
  "postal_code": "94105",
  "country": "US",
  "active": true
}

Related