Direct Web API CRM Contact

A Matrix MLS CRM Contact record from the CoreLogic Trestle Direct Web API.

Climate RiskCoreLogicCotalityDirect Web APIHazard DataInsurance DataListingsMatrix MLSMortgage DataMLSODataOneHomeOpenID ConnectParticipant ReportingProperty DataReal EstateRESO Data DictionaryRESO Web APIRETSTax DataTrestle

Properties

Name Type Description
ContactKeyNumeric integer
FirstName string
LastName string
Email string
Phone string
Address string
City string
StateOrProvince string
PostalCode string
ModificationTimestamp string
View JSON Schema on GitHub

JSON Schema

corelogic-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/corelogic/main/json-schema/corelogic-contact-schema.json",
  "title": "Direct Web API CRM Contact",
  "description": "A Matrix MLS CRM Contact record from the CoreLogic Trestle Direct Web API.",
  "type": "object",
  "required": ["ContactKeyNumeric"],
  "properties": {
    "ContactKeyNumeric": { "type": "integer" },
    "FirstName": { "type": "string" },
    "LastName": { "type": "string" },
    "Email": { "type": "string", "format": "email" },
    "Phone": { "type": "string" },
    "Address": { "type": "string" },
    "City": { "type": "string" },
    "StateOrProvince": { "type": "string" },
    "PostalCode": { "type": "string" },
    "ModificationTimestamp": { "type": "string", "format": "date-time" }
  }
}