Skip to main content
Permission: Read · Workspace: required (from goody_workspaces_list) Fetches the full detail for a single contact, including the event dates the search response omits. Use it before composing a birthday or anniversary gift, or to confirm a recipient’s details before sending.

Parameters

workspace_id
string
required
Workspace UUID — from goody_workspaces_list. The contact must belong to this workspace.
contact_id
string
required
Contact UUID — from a goody_contacts_search result.

Returns

id
string
Contact UUID.
first_name
string | null
Given name.
last_name
string | null
Family name.
email
string | null
Email address.
phone
string | null
Phone number.
company
string | null
Company name.
title
string | null
Job title.
birthday
string | null
Date as YYYY-MM-DD. A year of 1900 means only the month and day are known.
work_anniversary
string | null
Date as YYYY-MM-DD.
Returns not-found if the id is unknown or belongs to another workspace.

Example

"When is Maya Patel's birthday?"
{
  "name": "goody_contacts_get",
  "arguments": { "workspace_id": "3f8a…", "contact_id": "9c44…" }
}
{
  "id": "9c44…",
  "first_name": "Maya",
  "last_name": "Patel",
  "email": "maya@northwind.com",
  "phone": "+14155550199",
  "company": "Northwind",
  "title": "Design Lead",
  "birthday": "1991-04-12",
  "work_anniversary": "2020-09-01"
}
Find the contact first with goody_contacts_search, then edit it with goody_contacts_update.