---
title: "Get contact identifiers"
method: GET
path: "/candidates/{id}/contact-identifiers"
tags: ["Candidates"]
---

# Get contact identifiers

`GET /candidates/{id}/contact-identifiers`

Retrieve all contact identifiers (emails, phone numbers, LinkedIn URL) for a specific candidate. If the candidate is linked to any client contacts, their contact identifiers will also be included in the response.

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved contact identifiers for the candidate and any associated client contacts.

- CandidateContactIdentifiersDto
  - `emails` CandidateEmailDto[], required
    - `email` string, required
    - `purpose` 'personal' | 'work' | 'null', nullable, required
    - `isPrimary` boolean, required
  - `phoneNumbers` CandidatePhoneNumberDto[], required
    - `phoneNumber` string, required
    - `purpose` 'personal' | 'work' | 'null', nullable, required
    - `isPrimary` boolean, required
  - `linkedIn` CandidateLinkedInDto, required
    - `url` string, required
    - `isSynced` boolean, required
  - `socialMedia` CandidateContactIdentifiersSocialMediaDto[], required
    - `url` string, required
    - `type` 'LINKEDIN' | 'TWITTER' | 'FACEBOOK' | 'INSTAGRAM', required
    - `isPrimary` boolean, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized - invalid or missing authentication
- `404` — Person not found
- `500` — Error response

---

[API](https://skmtc.net/spott/apis/spott-webhooks.md) · [All operations](https://skmtc.net/spott/apis/spott-webhooks/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spott/spott-webhooks/revisions/ad1f8c51cf0a/schema)
