Skip to main content
GET
/
candidates
/
{id}
/
contact-identifiers
Get contact identifiers for a person
curl --request GET \
  --url https://api.gospott.com/candidates/{id}/contact-identifiers \
  --header 'x-api-key: <api-key>'
{
  "emails": [
    {
      "purpose": "personal",
      "email": "[email protected]",
      "isPrimary": true
    }
  ],
  "phoneNumbers": [
    {
      "purpose": "personal",
      "phoneNumber": "<string>",
      "isPrimary": true
    }
  ],
  "linkedInUrl": "<string>"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Response

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

emails
object[]
required
phoneNumbers
object[]
required
linkedInUrl
string | null
required