Skip to main content
GET
/
v1
/
contact-entries
/
{contact_entry_id}
Get Contact Entry
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.topo.io/v1/contact-entries/{contact_entry_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "contact_list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>",
  "linkedin_url": "<string>",
  "company_name": "<string>",
  "company_domain": "<string>",
  "job_title": "<string>",
  "phone": "<string>",
  "description": "<string>",
  "location": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer API key issued from Settings โ†’ Developers.

Path Parameters

contact_entry_id
string<uuid>
required

ID of the contact entry.

Response

200 - application/json

Successful Response

id
string<uuid>
required

Unique identifier.

contact_list_id
string<uuid>
required

ID of the list this entry belongs to.

contact_id
string<uuid> | null
required

ID of the contact this entry resolved to, once matched.

first_name
string | null
required

First name.

last_name
string | null
required

Last name.

email
string | null
required

Email.

linkedin_url
string | null
required

LinkedIn URL.

company_name
string | null
required

Employer name.

company_domain
string | null
required

Employer domain.

job_title
string | null
required

Job title.

phone
string | null
required

Phone number.

description
string | null
required

Free-form notes.

location
string | null
required

Person's location.

created_at
string<date-time>
required

When the entry was created.

updated_at
string<date-time>
required

When the entry last changed.