Skip to main content
How-To Guides Last updated: 6 March 2026

How to Manage Your Contacts

Create, view, update, and delete contact records in your Outlook contacts book.

Add, view, update, and delete entries in your Outlook personal contacts book.

View a Contact’s Full Details

tool: manage-contact
params:
  action: "get"
  id: "contact-id..."

Create a New Contact

“Add a contact for Jane Smith at jane@company.com

tool: manage-contact
params:
  action: "create"
  displayName: "Jane Smith"
  email: "jane@company.com"

With additional details:

tool: manage-contact
params:
  action: "create"
  displayName: "Jane Smith"
  email: "jane@company.com"
  mobilePhone: "+61 400 000 000"
  companyName: "Acme Corp"
  jobTitle: "Product Manager"
  notes: "Met at the Melbourne conference"

If displayName contains a space, it’s automatically split into first and last name.

Update an Existing Contact

“Update Jane’s email to jane.smith@newcompany.com

tool: manage-contact
params:
  action: "update"
  id: "contact-id..."
  email: "jane.smith@newcompany.com"

Only the fields you specify are updated — existing fields are preserved.

Delete a Contact

tool: manage-contact
params:
  action: "delete"
  id: "contact-id..."

Parameter Reference

ParameterWhat it doesUsed with
actionlist, search, get, create, update, deleteAll
idContact IDget, update, delete
displayNameFull namecreate, update
emailPrimary email addresscreate, update
mobilePhoneMobile phone numbercreate, update
companyNameCompany namecreate, update
jobTitleJob titlecreate, update
notesPersonal notescreate, update
querySearch textsearch
countNumber of resultslist, search

Tips

  • At least displayName or email is required when creating a contact
  • Use search-people for broader searches (directory + recent contacts) — see Find Contacts and People
  • Contacts sync across Outlook desktop, web, and mobile
Was this helpful?

Related Articles