---
title: "List contact addresses"
method: GET
path: "/contact_addresses"
tags: ["Contact"]
---

# List contact addresses

`GET /contact_addresses`

Get a list of contact addresses. Optionally filter by contact_id and/or type.

## Query parameters

- `page_size` integer
- `page_token` string
- `contact_id` string, uuid
- `type` 'tel' | 'email' | 'web_session'
- `unresolved` boolean
- `target` string

## Response `200`

Successful response.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` ContactManagerAddress[]
    - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' | 'web_session' — 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.
    - `id` string, uuid — Unique identifier for the address.
    - `contact_id` string, uuid — Unique identifier of the contact this address belongs to.
    - `customer_id` string, uuid — Unique identifier of the customer this address belongs to.
    - `is_primary` boolean — Indicates if this is the primary address for the given type.
    - `tm_create` string, date-time — Timestamp when the address was created.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

## Changes

- **2026-07-26** `d5569b315411` — 1 warning, 2 info
  - added the new `web_session` enum value to the `allOf[subschema #2]/result/items/allOf[#/components/schemas/CommonAddress]/type` response property for the response status `200`
  - added the new optional `query` request parameter `target`
  - added the new enum value `web_session` to the `query` request parameter `type`
- **2026-07-01** `505b7c32e910` — 1 info
  - added the new optional `query` request parameter `unresolved`
- **2026-06-30** `2ad05734434b` — 1 breaking, 5 warning, 1 info
  - the `allOf[subschema #2]/result/items/` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the optional property `allOf[subschema #2]/result/items/id` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/result/items/is_primary` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/result/items/target` from the response with the `200` status
  - …3 more
- **2026-06-30** `b1372a7d8ce6` — 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_addresses/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/48dafc7da0a6/schema)
