List all employees

Returns a list of employees.

NOTE: QuickBooks Desktop does not support pagination for employees; hence, there is no cursor parameter. Users typically have few employees.

get/quickbooks-desktop/employees

Query parameters

idsstring[]

Filter for specific employees by their QuickBooks-assigned unique identifier(s).

IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.

NOTE: If any of the values you specify in this parameter are not found, the request will return an error.

Filter for specific employees by their QuickBooks-assigned unique identifier(s).

IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.

NOTE: If any of the values you specify in this parameter are not found, the request will return an error.

[
  "80000001-1234567890"
]
namesstring[]

Filter for specific employees by their name(s), case-insensitive. Like id, name is a unique identifier for an employee.

IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.

NOTE: If any of the values you specify in this parameter are not found, the request will return an error.

Filter for specific employees by their name(s), case-insensitive. Like id, name is a unique identifier for an employee.

IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.

NOTE: If any of the values you specify in this parameter are not found, the request will return an error.

[
  "John Doe"
]
limitinteger

The maximum number of objects to return.

IMPORTANT: QuickBooks Desktop does not support cursor-based pagination for employees. This parameter will limit the response size, but you cannot fetch subsequent results using a cursor. For pagination, use the name-range parameters instead (e.g., nameFrom=A&nameTo=B).

When this parameter is omitted, the endpoint returns all employees without limit, unlike paginated endpoints which default to 150 records. This is acceptable because employees typically have low record counts.

Example:10

The maximum number of objects to return.

IMPORTANT: QuickBooks Desktop does not support cursor-based pagination for employees. This parameter will limit the response size, but you cannot fetch subsequent results using a cursor. For pagination, use the name-range parameters instead (e.g., nameFrom=A&nameTo=B).

When this parameter is omitted, the endpoint returns all employees without limit, unlike paginated endpoints which default to 150 records. This is acceptable because employees typically have low record counts.

status'active' | 'all' | 'inactive'

Filter for employees that are active, inactive, or both.

Example:active

Filter for employees that are active, inactive, or both.

updatedAfterstring

Filter for employees updated on or after this date/time. Accepts the following ISO 8601 formats:

  • date-only (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the start of the specified day in the local timezone of the end-user's computer (e.g., 2025-01-012025-01-01T00:00:00).
  • datetime without timezone (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop interprets the timestamp in the local timezone of the end-user's computer.
  • datetime with timezone (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop interprets the timestamp using the specified timezone.
Example:2025-01-01T12:34:56+00:00

Filter for employees updated on or after this date/time. Accepts the following ISO 8601 formats:

  • date-only (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the start of the specified day in the local timezone of the end-user's computer (e.g., 2025-01-012025-01-01T00:00:00).
  • datetime without timezone (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop interprets the timestamp in the local timezone of the end-user's computer.
  • datetime with timezone (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop interprets the timestamp using the specified timezone.
updatedBeforestring

Filter for employees updated on or before this date/time. Accepts the following ISO 8601 formats:

  • date-only (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the end of the specified day in the local timezone of the end-user's computer (e.g., 2025-01-012025-01-01T23:59:59).
  • datetime without timezone (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop interprets the timestamp in the local timezone of the end-user's computer.
  • datetime with timezone (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop interprets the timestamp using the specified timezone.
Example:2025-02-01T12:34:56+00:00

Filter for employees updated on or before this date/time. Accepts the following ISO 8601 formats:

  • date-only (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the end of the specified day in the local timezone of the end-user's computer (e.g., 2025-01-012025-01-01T23:59:59).
  • datetime without timezone (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop interprets the timestamp in the local timezone of the end-user's computer.
  • datetime with timezone (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop interprets the timestamp using the specified timezone.
nameContainsstring

Filter for employees whose name contains this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameStartsWith or nameEndsWith.

Example:ABC

Filter for employees whose name contains this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameStartsWith or nameEndsWith.

nameStartsWithstring

Filter for employees whose name starts with this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameContains or nameEndsWith.

Example:ABC

Filter for employees whose name starts with this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameContains or nameEndsWith.

nameEndsWithstring

Filter for employees whose name ends with this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameContains or nameStartsWith.

Example:ABC

Filter for employees whose name ends with this substring, case-insensitive.

NOTE: If you use this parameter, you cannot also use nameContains or nameStartsWith.

nameFromstring

Filter for employees whose name is alphabetically greater than or equal to this value.

Example:A

Filter for employees whose name is alphabetically greater than or equal to this value.

nameTostring

Filter for employees whose name is alphabetically less than or equal to this value.

Example:Z

Filter for employees whose name is alphabetically less than or equal to this value.

Headers

Conductor-End-User-Idstring required

The ID of the End-User to receive this request.

Example:end_usr_1234567abcdefg

The ID of the End-User to receive this request.

Response

Returns a list of employees.

objectType'list' required

The type of object. This value is always "list".

urlstring required

The endpoint URL where this list can be accessed.

Example response

{
  "objectType": "list",
  "url": "/v1/quickbooks-desktop/employees",
  "data": [
    {
      "id": "80000001-1234567890",
      "objectType": "qbd_employee",
      "createdAt": "2025-01-01T12:34:56+00:00",
      "updatedAt": "2025-02-01T12:34:56+00:00",
      "revisionNumber": "1721172183",
      "name": "John Doe",
      "isActive": true,
      "salutation": "Dr.",
      "firstName": "John",
      "middleName": "A.",
      "lastName": "Doe",
      "jobTitle": "Purchasing Manager",
      "supervisor": {
        "id": "80000001-1234567890",
        "fullName": "John Doe"
      },
      "department": "Sales",
      "description": "This employee is a key employee.",
      "targetBonus": "10000.00",
      "address": {
        "line1": "Conductor Labs Inc.",
        "line2": "540 Market St.",
        "line3": "Suite 100",
        "city": "San Francisco",
        "state": "CA",
        "postalCode": "94110",
        "country": "United States"
      },
      "printAs": "John Doe",
      "phone": "+1-555-123-4567",
      "mobile": "+1-555-555-1212",
      "pager": "+1-555-555-1212",
      "pagerPin": "1234",
      "alternatePhone": "+1-555-987-6543",
      "fax": "+1-555-555-1212",
      "ssn": "123-45-6789",
      "email": "employee@example.com",
      "customContactFields": [
        {
          "name": "Main Phone",
          "value": "555-123-4567"
        }
      ],
      "emergencyContact": {
        "primaryContact": {
          "name": "Main Phone",
          "value": "555-123-4567",
          "relation": "spouse"
        },
        "secondaryContact": {
          "name": "Main Phone",
          "value": "555-123-4567",
          "relation": "spouse"
        }
      },
      "employeeType": "regular",
      "employmentStatus": "full_time",
      "overtimeExemptStatus": "exempt",
      "keyEmployeeStatus": "key_employee",
      "gender": "male",
      "hiredDate": "2024-01-01",
      "originalHireDate": "2024-01-01",
      "adjustedServiceDate": "2024-01-01",
      "terminationDate": "2024-01-01",
      "birthDate": "1990-01-01",
      "usCitizenshipStatus": "citizen",
      "ethnicity": "asian",
      "disabilityStatus": "disabled",
      "disabilityDescription": "Cerebral Palsy",
      "i9OnFileStatus": "on_file",
      "workAuthorizationExpirationDate": "2024-01-01",
      "usVeteranStatus": "veteran",
      "militaryStatus": "active",
      "accountNumber": "1010",
      "note": "This employee is a key employee.",
      "additionalNotes": [
        {
          "id": 1,
          "date": "2024-01-01",
          "note": "This is a fun note."
        }
      ],
      "billingRate": {
        "id": "80000001-1234567890",
        "fullName": "Standard Rate"
      },
      "employeePayroll": {
        "payPeriod": "weekly",
        "class": {
          "id": "80000001-1234567890",
          "fullName": "Payroll"
        },
        "earnings": [
          {
            "payrollWageItem": {
              "id": "80000001-1234567890",
              "fullName": "Regular Pay"
            },
            "rate": "10.00",
            "ratePercent": "10.5"
          }
        ],
        "useTimeDataToCreatePaychecks": "uses_time_data",
        "sickHours": {
          "hoursAvailable": "PT8H30M",
          "accrualPeriod": "accrues_per_paycheck",
          "hoursAccruedPerPeriod": "PT8H0M",
          "maximumHours": "PT80H0M",
          "hoursUsed": "PT2H45M",
          "accrualStartDate": "2024-01-01"
        },
        "vacationHours": {
          "hoursAvailable": "PT8H30M",
          "accrualPeriod": "accrues_per_paycheck",
          "hoursAccruedPerPeriod": "PT8H0M",
          "maximumHours": "PT80H0M",
          "hoursUsed": "PT2H45M",
          "accrualStartDate": "2024-01-01"
        }
      },
      "externalId": "12345678-abcd-1234-abcd-1234567890ab",
      "customFields": [
        {
          "ownerId": "0",
          "name": "Customer Rating",
          "type": "string_1024_type",
          "value": "Premium"
        }
      ]
    }
  ]
}

Changes

Changed in 5 of the 46 revisions of this API.14140145

    • for the query request parameter status, default value active was added

      request-parameter-default-value-added

    • for the query request parameter status, default value active was removed

      request-parameter-default-value-removed

  • 10d4e9ebd1df4648See the full diff
    • response property data/items/accountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/additionalNotes/items/date list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/adjustedServiceDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/alternatePhone list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/birthDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/customContactFields/items/value list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/department list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/description list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/disabilityDescription list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/disabilityStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/email list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/employeeType list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/employmentStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/ethnicity list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/externalId list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/fax list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/firstName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/gender list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/hiredDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/i9OnFileStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/jobTitle list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/keyEmployeeStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/lastName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/middleName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/militaryStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/mobile list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/note list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/originalHireDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/overtimeExemptStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/pager list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/pagerPin list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/phone list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/printAs list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/salutation list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/ssn list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/targetBonus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/terminationDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/usCitizenshipStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/usVeteranStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/workAuthorizationExpirationDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the data/items/billingRate response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the data/items/supervisor response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property data/items/billingRate/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/billingRate/id from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/supervisor/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/supervisor/id from the response with the 200 status

      response-required-property-removed

    • added qbd_emergency_contact_set subschema #2 to the data/items/emergencyContact response property anyOf list for the response status 200

      response-property-any-of-added

    • added qbd_employee_address subschema #2 to the data/items/address response property anyOf list for the response status 200

      response-property-any-of-added

    • added qbd_employee_payroll_info subschema #2 to the data/items/employeePayroll response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the data/items/billingRate response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the data/items/supervisor response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the active enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the american_indian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the asian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the black enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the citizen enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the disabled enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the exempt enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the female enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the full_time enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the hawaiian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the hispanic enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the key_employee enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the male enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the non_citizen enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_disabled enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_exempt enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_key_employee enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_veteran enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_on_file enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the officer enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the on_file enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the owner enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the part_time enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the regular enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the reserve enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the statutory enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the two_or_more_races enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the veteran enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the white enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_emergency_contact_set subschema #2 from the data/items/emergencyContact response property oneOf list for the response status 200

      response-property-one-of-removed

    • removed qbd_employee_address subschema #2 from the data/items/address response property oneOf list for the response status 200

      response-property-one-of-removed

    • removed qbd_employee_payroll_info subschema #2 from the data/items/employeePayroll response property oneOf list for the response status 200

      response-property-one-of-removed

  • 8e0b7df2044d474049See the full diff
    • the response property data/items/accountNumber became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/additionalNotes/items/date became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/adjustedServiceDate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/alternatePhone became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/billingRate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/birthDate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/customContactFields/items/value became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/department became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/description became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/disabilityDescription became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/disabilityStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/email became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/employeeType became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/employmentStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/ethnicity became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/externalId became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/fax became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/firstName became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/gender became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/hiredDate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/i9OnFileStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/jobTitle became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/keyEmployeeStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/lastName became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/middleName became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/militaryStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/mobile became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/note became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/originalHireDate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/overtimeExemptStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/pager became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/pagerPin became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/phone became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/printAs became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/salutation became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/ssn became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/supervisor became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/targetBonus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/terminationDate became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/usCitizenshipStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/usVeteranStatus became nullable for the status 200

      response-property-became-nullable

    • the response property data/items/workAuthorizationExpirationDate became nullable for the status 200

      response-property-became-nullable

    • added qbd_emergency_contact_set subschema #2 to the data/items/emergencyContact response property oneOf list for the response status 200

      response-property-one-of-added

    • added qbd_employee_address subschema #2 to the data/items/address response property oneOf list for the response status 200

      response-property-one-of-added

    • added qbd_employee_payroll_info subschema #2 to the data/items/employeePayroll response property oneOf list for the response status 200

      response-property-one-of-added

    • the data/items/billingRate response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the data/items/supervisor response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • added the new active enum value to the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-added

    • added the new american_indian enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new asian enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new black enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new citizen enum value to the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-added

    • added the new disabled enum value to the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-added

    • added the new exempt enum value to the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-added

    • added the new female enum value to the data/items/gender response property for the response status 200

      response-property-enum-value-added

    • added the new full_time enum value to the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-added

    • added the new hawaiian enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new hispanic enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new key_employee enum value to the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-added

    • added the new male enum value to the data/items/gender response property for the response status 200

      response-property-enum-value-added

    • added the new non_citizen enum value to the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-added

    • added the new non_disabled enum value to the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-added

    • added the new non_exempt enum value to the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-added

    • added the new non_key_employee enum value to the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-added

    • added the new non_veteran enum value to the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-added

    • added the new not_on_file enum value to the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-added

    • added the new officer enum value to the data/items/employeeType response property for the response status 200

      response-property-enum-value-added

    • added the new on_file enum value to the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-added

    • added the new owner enum value to the data/items/employeeType response property for the response status 200

      response-property-enum-value-added

    • added the new part_time enum value to the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-added

    • added the new regular enum value to the data/items/employeeType response property for the response status 200

      response-property-enum-value-added

    • added the new reserve enum value to the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-added

    • added the new statutory enum value to the data/items/employeeType response property for the response status 200

      response-property-enum-value-added

    • added the new two_or_more_races enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/employeeType response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/gender response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-added

    • added the new veteran enum value to the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-added

    • added the new white enum value to the data/items/ethnicity response property for the response status 200

      response-property-enum-value-added

    • removed qbd_emergency_contact_set subschema #2 from the data/items/emergencyContact response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed qbd_employee_address subschema #2 from the data/items/address response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed qbd_employee_payroll_info subschema #2 from the data/items/employeePayroll response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the data/items/billingRate response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the data/items/supervisor response property anyOf list for the response status 200

      response-property-any-of-removed

    • response property data/items/accountNumber list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/additionalNotes/items/date list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/adjustedServiceDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/alternatePhone list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/birthDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/customContactFields/items/value list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/department list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/description list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/disabilityDescription list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/disabilityStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/email list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/employeeType list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/employmentStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/ethnicity list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/externalId list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/fax list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/firstName list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/gender list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/hiredDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/i9OnFileStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/jobTitle list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/keyEmployeeStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/lastName list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/middleName list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/militaryStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/mobile list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/note list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/originalHireDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/overtimeExemptStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/pager list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/pagerPin list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/phone list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/printAs list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/salutation list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/ssn list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/targetBonus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/terminationDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/usCitizenshipStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/usVeteranStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property data/items/workAuthorizationExpirationDate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • added the required property data/items/billingRate/fullName to the response with the 200 status

      response-required-property-added

    • added the required property data/items/billingRate/id to the response with the 200 status

      response-required-property-added

    • added the required property data/items/supervisor/fullName to the response with the 200 status

      response-required-property-added

    • added the required property data/items/supervisor/id to the response with the 200 status

      response-required-property-added

  • 5f832f6956754648See the full diff
    • response property data/items/accountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/additionalNotes/items/date list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/adjustedServiceDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/alternatePhone list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/birthDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/customContactFields/items/value list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/department list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/description list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/disabilityDescription list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/disabilityStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/email list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/employeeType list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/employmentStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/ethnicity list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/externalId list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/fax list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/firstName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/gender list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/hiredDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/i9OnFileStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/jobTitle list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/keyEmployeeStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/lastName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/middleName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/militaryStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/mobile list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/note list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/originalHireDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/overtimeExemptStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/pager list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/pagerPin list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/phone list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/printAs list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/salutation list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/ssn list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/targetBonus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/terminationDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/usCitizenshipStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/usVeteranStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property data/items/workAuthorizationExpirationDate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the data/items/billingRate response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the data/items/supervisor response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property data/items/billingRate/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/billingRate/id from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/supervisor/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property data/items/supervisor/id from the response with the 200 status

      response-required-property-removed

    • added qbd_emergency_contact_set subschema #2 to the data/items/emergencyContact response property anyOf list for the response status 200

      response-property-any-of-added

    • added qbd_employee_address subschema #2 to the data/items/address response property anyOf list for the response status 200

      response-property-any-of-added

    • added qbd_employee_payroll_info subschema #2 to the data/items/employeePayroll response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the data/items/billingRate response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the data/items/supervisor response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the active enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the american_indian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the asian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the black enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the citizen enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the disabled enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the exempt enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the female enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the full_time enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the hawaiian enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the hispanic enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the key_employee enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the male enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the non_citizen enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_disabled enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_exempt enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_key_employee enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the non_veteran enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_on_file enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the officer enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the on_file enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the owner enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the part_time enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the regular enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the reserve enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the statutory enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the two_or_more_races enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/disabilityStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/employeeType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/employmentStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/gender response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/i9OnFileStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/keyEmployeeStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/militaryStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/overtimeExemptStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/usCitizenshipStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the veteran enum value from the data/items/usVeteranStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the white enum value from the data/items/ethnicity response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_emergency_contact_set subschema #2 from the data/items/emergencyContact response property oneOf list for the response status 200

      response-property-one-of-removed

    • removed qbd_employee_address subschema #2 from the data/items/address response property oneOf list for the response status 200

      response-property-one-of-removed

    • removed qbd_employee_payroll_info subschema #2 from the data/items/employeePayroll response property oneOf list for the response status 200

      response-property-one-of-removed