COUNTCOUNT
Sign Up
PeopleList people

List people

GET/partners/people

Returns a paginated list of people in the workspace.

People are returned with optional nested associations (address, primary job, department). Soft-deleted people are excluded.

HMAC signature + Bearer access token
Try this request

Query parameters

pageintegeroptional

Page number for pagination. The first page is 1.

limitintegeroptional

Records to return per page.

searchstringoptional

Partial, case-insensitive match on first name, last name, email, and phone.

typestringoptional

Filter by people type (for example employee, contractor). Also supports `1099 contractor`.

enabledbooleanoptional

Filter by active/inactive status.

rolesstringoptional

Comma-separated roles; matches people whose role array contains any listed role.

payrollEnabledbooleanoptional

When true, returns people with the payroll role.

createdByMebooleanoptional

When true, returns only people created by the authenticated user.

isNotExpenseReporterbooleanoptional

When true, excludes people who are already expense reporters.

Responses

200Paginated list of people.
401Missing or invalid HMAC signature, expired timestamp, or invalid Bearer token. Troubleshoot
403The credential does not have access to this workspace or resource. Troubleshoot
429Rate limit exceeded (100 requests per minute per clientId). Retry after the Retry-After header. Troubleshoot
GEThttps://api.getcount.com/partners/people
Request
import crypto from 'node:crypto';

const BASE_URL = 'https://api.getcount.com';
const CLIENT_ID = process.env.COUNT_CLIENT_ID;
const CLIENT_SECRET = process.env.COUNT_CLIENT_SECRET;
const ACCESS_TOKEN = process.env.COUNT_ACCESS_TOKEN;

const method = 'GET';
const signingPath = '/people';
const timestamp = Math.floor(Date.now() / 1000).toString();
const bodyString = '';

const bodyHash = '';
const baseString = `${method}:${signingPath}:${timestamp}:${bodyHash}`;
const signature = crypto.createHmac('sha256', CLIENT_SECRET).update(baseString).digest('hex');

const response = await fetch(`${BASE_URL}/partners/people`, {
  method,
  headers: {
    'x-client-id': CLIENT_ID,
    'x-timestamp': timestamp,
    'x-signature': signature,
    Authorization: `Bearer ${ACCESS_TOKEN}`,
  },
});

console.log(await response.json());
Response · 200
{
  "people": [
    {
      "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"
    }
  ],
  "page": 1,
  "limit": 20,
  "totalRecords": 1,
  "totalPages": 1,
  "filters": {}
}