---
title: "List Contacts"
method: GET
path: "/contacts"
tags: ["Contact"]
---

# List Contacts

`GET /contacts`

Returns the list of all the Contacts within your organization.

## Query parameters

- `after` string
- `limit` integer

## Response `200`

OK

- GetContacts200Response
  - `meta` Pagination — Metadata about the response.
    - `next_cursor` string, nullable, required — Token to get the next page of results. If `null`, there are no more pages.
  - `data` Contact[]
    - `id` string, uuid, required — Unique identifier of the Contact.
    - `first_name` string, required — First name of the Contact.
    - `last_name` string, required — Last name of the Contact.
    - `email` string, email, required — Email of the Contact.
    - `locale` 'en' | 'fr' | 'de' | 'it' | 'nl' | 'es' | 'pl' | 'pt' | 'ro', required — Locale of the Contact.
    - `phone_number` string, required — Phone number of the Contact.
    - `company_name` string, required — Company name of the Contact.
    - `job_title` string, required — Job title of the Contact.
    - `address_line_1` string, required — Primary address line, typically including street number and name.
    - `address_line_2` string, required — Additional address information, such as apartment, suite, or building name.
    - `address_city` string, required — City of the Contact’s address.
    - `address_postal_code` string, required — Postal or ZIP code of the Contact’s address.
    - `address_country` string, required — Country of the Contact’s address.
    - `workspace_id` string, uuid, required — Unique identifier of the Workspace in which the Contact is visible.

## Other responses

- `400` — Bad request
- `401` — Access unauthorized
- `403` — Access forbidden
- `405` — This method is not allowed
- `429` — Too Many Requests, please try again later.
- `500` — Internal Server Error

---

[API](https://skmtc.net/yousign/apis/public-api-v3.md) · [All operations](https://skmtc.net/yousign/apis/public-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yousign/public-api-v3/revisions/8d258c0b45d6/schema)
