Skip to main content
Used in: Find Contact

Fields

FieldTypeDescription
idstring (UUID)Goliath contact ID
namestringContact’s full name
phonesstring[]Phone numbers on file
emailsstring[]Email addresses on file
addressesstring[]Addresses on file
contributorsContributor[]Org users assigned to this contact
tagsTag[]Tags applied to this contact

Contributor

FieldTypeDescription
idstring (UUID)Goliath user ID
namestringUser’s full name

Tag

FieldTypeDescription
textstringDisplay label (may be title-cased)
valuestringNormalized value (lowercased, hyphenated)

Example

{
  "id": "a1b2c3d4-0000-0000-0000-000000000000",
  "name": "John Doe",
  "phones": ["5550000001"],
  "emails": ["john.doe@example.com"],
  "addresses": ["123 Main St, Springfield, USA 00000"],
  "contributors": [
    { "id": "user-uuid-0000", "name": "Sarah Smith" }
  ],
  "tags": [
    { "text": "Motivated Seller", "value": "motivated-seller" }
  ]
}

Notes

The find endpoint returns an array of ContactResponse objects, not a single object. An empty array [] means no contacts matched.
phones, emails, and addresses may be empty arrays if no data is on file for the contact.