---
title: "List contacts"
method: GET
path: "/contacts"
tags: ["Contacts"]
---

# List contacts

`GET /contacts`

Returns a paginated list of contacts. Supports filtering by contact name.

## Query parameters

- `page` integer — Page number (1-based)
- `size` integer — Number of items per page
- `name` string — Filter by contact name

## Response `200`

Paginated list of contacts

- ContactListResponse
  - `data` Contact[], required
    - `id` number, required — Contact ID
    - `name` string, nullable, required — Contact name
    - `email` string, email, nullable, required — Contact email address
    - `phoneNumber` string, nullable, required — Contact phone number
    - `jobTitle` string, nullable, required — Job title
    - `crmPersonId` string, nullable, required — External CRM person identifier
    - `crmIdentifier` string, nullable, required — External CRM identifier (unified field)
    - `crmLink` string, nullable, required — URL to contact in external CRM
    - `crm` 'microsoft_dynamics' | 'hubspot' | 'pipedrive' | 'salesforce' | 'sellsy' | 'zoho' | 'null', nullable, required — CRM provider
    - `accountId` number, nullable, required — Associated account ID
    - `createdOn` string, nullable, required — Creation timestamp
    - `modifiedOn` string, nullable, required — Last modification timestamp
  - `pagination` object, required
    - `page` number, required — Current page number
    - `size` number, required — Items per page
    - `total` number, required — Total number of items

---

[API](https://skmtc.dev/modjo/apis/modjo-public-api.md) · [All operations](https://skmtc.dev/modjo/apis/modjo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/modjo/modjo-public-api/revisions/dcae8b3284e8/schema)
