---
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).

---

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