COUNTCOUNT
Sign Up

API Reference

People

People are workspace members — employees, contractors, and other payroll or expense-reporting contacts. Partner responses expose UUIDs as `id` and omit internal numeric foreign keys.

Last updated 2026-06-21

Overview

The People API lets your integration list and retrieve people records in a workspace. People include employees, contractors, and other contacts used for payroll, time tracking, and expense reporting.

Partner routes are read-only: you can list people and retrieve a single person by UUID. Create, update, and delete are not available under `/partners/people`. Every person is identified by a UUID returned as `id` in responses.

Key concepts

Read-only partner access

Partner integrations can list and retrieve people but cannot create, update, or delete them through the Partner API. Manage people through the COUNT product or internal APIs.

Identification

Reference a person by the UUID returned as `id`. Internal numeric ids and workspace foreign keys are stripped from partner JSON.

Primary job fields

List and retrieve responses may include `paymentUnit` and `rate` derived from the person's primary job when one exists.

The person object

Core fields returned on people records. Nested associations (jobs, address, department) may be embedded when present.

Attributes

iduuid

Person identifier (UUID). Use in path parameters.

firstNamestring

Person's first name.

lastNamestring

Person's last name.

emailstring

Email address.

phonestring

Phone number.

typestring

People type (for example employee, contractor).

enabledboolean

Whether the person is active in the workspace.

rolearray

Workspace roles assigned to the person (for example payroll).

paymentUnitstring

Primary job payment unit when a primary job exists (for example hourly, salary).

ratenumber

Primary job rate when a primary job exists.

createdAtdatetime

ISO 8601 creation timestamp.

updatedAtdatetime

ISO 8601 last update timestamp.

Example
{
  "id": "f1a2b3c4-d5e6-4789-a012-3456789abcde",
  "firstName": "Jane",
  "lastName": "Smith",
  "email": "jane.smith@acme.com",
  "phone": "+19876543210",
  "type": "employee",
  "enabled": true,
  "role": [
    "payroll"
  ],
  "paymentUnit": "hourly",
  "rate": 45,
  "createdAt": "2026-01-15T10:30:00.000Z",
  "updatedAt": "2026-01-28T14:22:30.000Z"
}

Used by time entries and expense receipts

Time entry create payloads require `peopleUuid` from this API. Expense receipt flows may also reference people indirectly through account assignments.

Filtering

Use `search` for partial matches on first name, last name, email, and phone. Filter by `type`, `enabled`, `roles`, and other query params documented on List people.

Recent changes

2026-06-21

Complete Partner API reference

Documented all remaining API reference groups: Chart of Accounts, Vendors, Products & Services, Recurring Invoice Templates, Credit Memos, Bills, Journal Entries, Tags, People, Projects, Tasks, Time Entries, Expense Receipts, Reports, and Workspace Stats. Added missing invoice endpoints (audit log, attachments, credit application, remove transaction) and group overviews for Invoices and Transactions.

Endpoints