Skip to content
Go to Micro

Contact

A person at a specific company with a specific email address

A Contact represents a person at a specific company — they have an email address, a role, and belong to an Organization. Contacts are the most granular person record in Micro.

If a person has worked at multiple companies, each role is a separate Contact linked to a shared Identity.

SlugTypeDescription
full_namestringFull display name
first_namestringFirst name
last_namestringLast name
emailstringEmail address
titlestringJob title
citystringCity
countrystringCountry
descriptionstringBio or notes
linkedinstringLinkedIn profile URL
twitterstringTwitter/X handle
githubstringGitHub username
photo_urlstringProfile photo URL
first_interaction_datedateDate of first email or event
last_interaction_datedateDate of most recent interaction
seniorityselectSeniority level (e.g. senior, executive)
departmentmultiselectDepartment(s) the contact belongs to
tagsmultiselectCustom tags
labelsmultiselectLabels for pipeline/status tracking
SlugPoints toDescription
companyOrganizationThe company this contact works at
actionsAction[]Tasks linked to this contact
documentsDocument[]Notes and docs linked to this contact
first_emailMessageEarliest email with this contact
last_emailMessageMost recent email with this contact
next_calendar_eventEventUpcoming meeting
strongest_connectionIdentityYour team member with the strongest relationship
mutual_connectionsIdentity[]Shared connections
{
"query": {
"select": ["full_name", "email", "title", "company.name"],
"filter": [{ "labels": { "in": ["investor"] } }],
"sort": [{ "last_interaction_date": "desc" }],
"limit": 50
}
}