---
title: "List contacts for an account"
method: GET
path: "/v3/contact-accounts/{id}/contacts"
tags: ["Accounts"]
---

# List contacts for an account

`GET /v3/contact-accounts/{id}/contacts`

<small>_Requires the `contacts:read` scope (or a broader one that includes it)._</small>

Returns a paginated list of contacts linked to the specified account.

## Path parameters

- `id` integer, required

## Query parameters

- `top` integer
- `skip` integer

## Response `200`

Paginated list of contacts linked to the account

- object
  - `items` object[]
    - `id` integer — Unique identifier of the contact
    - `email` string, nullable — Contact email address
    - `firstName` string, nullable — Contact first name
    - `lastName` string, nullable — Contact last name
    - `title` string, nullable — Contact job title
    - `company` string, nullable — Contact company name
  - `hasMore` boolean — Whether more items are available beyond the current page

## Other responses

- `400` — Route parameter validation failure (e.g. `id` not a positive integer), or a business-rule rejection (e.g. invalid pagination).
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks permission to view this account
- `404` — Account not found
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/revisions/1c3d32eaf95e/schema)
