---
title: "List interactions"
method: GET
path: "/contact_interactions"
tags: ["Interaction"]
---

# List interactions

`GET /contact_interactions`

List CRM interactions for the customer. Exactly one filter is required:
peer_type + peer_target (remote endpoint), contact_id, or address_id.

## Query parameters

- `peer_type` string
- `peer_target` string
- `contact_id` string, uuid
- `address_id` string, uuid
- `page_size` integer
- `page_token` string

## Response `200`

Successful response.

- ContactManagerInteractionListResponse
  - `result` ContactManagerInteraction[] — List of interactions.
    - `id` string, uuid — Unique identifier for the interaction.
    - `customer_id` string, uuid — Unique identifier of the associated customer.
    - `direction` 'incoming' | 'outgoing' — Direction of the interaction from the platform perspective.
    - `peer` CommonAddress — Contains source or destination detail info.
      - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' — Type of address.
      - `target` string — The address endpoint. Format depends on type: phone number for tel (e.g. +14155551234), UUID for agent/conference/extension, email for email, SIP URI for sip.
      - `target_name` string — Address's name.
      - `name` string — Optional label for this address.
      - `detail` string — Additional notes about this address.
    - `local` CommonAddress — Contains source or destination detail info.
      - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' — Type of address.
      - `target` string — The address endpoint. Format depends on type: phone number for tel (e.g. +14155551234), UUID for agent/conference/extension, email for email, SIP URI for sip.
      - `target_name` string — Address's name.
      - `name` string — Optional label for this address.
      - `detail` string — Additional notes about this address.
    - `reference_type` string — Origin channel type (e.g. "call", "conversation").
    - `reference_id` string, uuid — ID of the origin channel record (call_id or conversation_id).
    - `tm_interaction` string, date-time — Origin event time (from the channel record). Nullable.
    - `tm_create` string, date-time — Timestamp when this interaction was recorded (projection insert time, used as pagination cursor).
  - `next_page_token` string — Pagination token for the next page. Empty when no further pages exist.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `500` — Internal error (INTERNAL).

## Changes

- **2026-07-22** `6bba44d87e83` — 4 warning, 2 info
  - removed the optional property `result/items/local_target` from the response with the `200` status
  - removed the optional property `result/items/local_type` from the response with the `200` status
  - removed the optional property `result/items/peer_target` from the response with the `200` status
  - removed the optional property `result/items/peer_type` from the response with the `200` status
  - …2 more
- **2026-07-08** `0e81fffc2849` — 1 info
  - endpoint added
- **2026-05-30** `995c56ba9219` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/voipbin/apis/voipbin-api/changes/contact_interactions/get.md)

---

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