---
title: "List customer contacts"
method: GET
path: "/v3/customers/{id}/contacts"
tags: ["Customers"]
---

# List customer contacts

`GET /v3/customers/{id}/contacts`

## Path parameters

- `id` string, required

## Query parameters

- `page` number, required
- `limit` number, required
- `filter` string

## Response `200`

Get all Customers by filter

- object
  - `payload` object, required — Response payload, will be empty when success is false
    - `data` ContactV3Dto[]
      - `id` string, required — Contact ID
      - `firstName` string — Contact First Name
      - `lastName` string — Contact Last Name
      - `email` string, required — Contact Email
      - `isPrimaryContact` boolean, required — Is Primary Contact
      - `isCCEmail` boolean, required — Is CC Email
    - `limit` number
    - `totalItems` number
    - `currentPage` number
  - `success` boolean, required — Boolean with true=success, false=failure
  - `message` string, required — Plain-text description of the result
  - `error` IntegratorsApiError, required
    - `code` number, required — API response code
    - `message` string, required — API response message
    - `details` object — Additional details about the error

## Other responses

- `404` — Customer not found
- `500` — Internal server error

---

[API](https://skmtc.net/tabsplatform/apis/tabs-external-api.md) · [All operations](https://skmtc.net/tabsplatform/apis/tabs-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tabsplatform/tabs-external-api/revisions/7e8885517814/schema)
