---
title: "Get contact"
method: GET
path: "/v1/contacts/{contactId}"
tags: ["Contacts"]
---

# Get contact

`GET /v1/contacts/{contactId}`

Returns a contact with all associated messaging channels.

## Path parameters

- `contactId` string, required

## Response `200`

Contact with channels

- object
  - `success` boolean
  - `contact` object
    - `id` string
    - `name` string
    - `email` string
    - `company` string
    - `avatarUrl` string
    - `tags` string[]
    - `isSubscribed` boolean
    - `isBlocked` boolean
    - `messagesSentCount` integer — Messages sent to the contact, derived live from message history across all linked conversations.
    - `messagesReceivedCount` integer — Messages received from the contact, derived live from message history across all linked conversations.
    - `lastMessageSentAt` string, date-time, nullable — Timestamp of the most recent outgoing message, or null if none.
    - `lastMessageReceivedAt` string, date-time, nullable — Timestamp of the most recent incoming message, or null if none.
    - `customFields` object
    - `notes` string
    - `conversationIds` string[]
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `channels` object[]
    - `id` string
    - `accountId` string
    - `platform` string
    - `platformIdentifier` string
    - `displayIdentifier` string
    - `isSubscribed` boolean
    - `conversationId` string
    - `lastActiveAt` string, date-time, nullable — Most recent message (either direction) in this channel's conversation, or null if none.
    - `createdAt` string, date-time

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `404` — Resource not found

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/versions/51932b099b2f/schema)
