Prospecting

Integration ProviderContactCompany
ZoomInfo

Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!


Contact: prospecting-contact

A contact stores information about a potential business contact

{
  "address": {
    "title": "Address",
    "type": "object",
    "description": "Primary address of the contact",
    "properties": {
      "primary_city": {
        "title": "Primary City",
        "type": "string",
        "description": "The city of the primary address."
      },
      "primary_country": {
        "title": "Primary Country",
        "type": "string",
        "description": "The country of the primary address."
      },
      "primary_postal_code": {
        "title": "Primary Postal Code",
        "type": "string",
        "description": "The postal or ZIP code of the primary address."
      },
      "primary_state": {
        "title": "Primary State",
        "type": "string",
        "description": "The state or region of the primary address."
      },
      "primary_street_1": {
        "title": "Primary Street 1",
        "type": "string",
        "description": "Line 1 of the street for the primary address."
      },
      "primary_street_2": {
        "title": "Primary Street 2",
        "type": "string",
        "description": "Line 2 of the street for the primary address."
      }
    }
  },
  "company": {
    "title": "Company",
    "type": "string"
  },
  "company_url": {
    "title": "Company URL",
    "type": "string",
    "format": "uri",
  },
  "email_address": {
    "format": "email",
    "title": "Email Address",
    "type": "string",
    "description":"Primary email address of the contact"
  },
  "first_name": {
    "title": "First Name",
    "type": "string"
  },
  "last_name": {
    "title": "Last Name",
    "type": "string"
  },
  "title": {
    "title": "Title",
    "type": "string",
  },
  "phone_number": {
    "title": "Phone Number",
    "type": "string",
    "description":"Primary phone number of the contact"
  }
}
{
  "address":
  {
    "primary_street_1": "20 W 34th St",
    "primary_street_2": "Apt 101",
    "primary_city": "New York",
    "primary_state": "NY",
    "primary_postal_code": "10001",
    "primary_country": "USA"
  },
  "company": "Endgrate",
  "company_url": "https://endgrate.com",
  "email_address": "[email protected]",
  "first_name": "John",
  "last_name": "Doe",
  "title": "Developer",
  "phone_number": "631-555-1234"
}

Company: prospecting-company

A company is an organization being researched for potential business opportunities.

{
  "address": {
    "title": "Address",
    "type": "object",
    "description": "Primary address of the company",
    "properties": {
      "primary_city": {
        "title": "Primary City",
        "type": "string",
        "description": "The city of the primary address."
      },
      "primary_country": {
        "title": "Primary Country",
        "type": "string",
        "description": "The country of the primary address."
      },
      "primary_postal_code": {
        "title": "Primary Postal Code",
        "type": "string",
        "description": "The postal or ZIP code of the primary address."
      },
      "primary_state": {
        "title": "Primary State",
        "type": "string",
        "description": "The state or region of the primary address."
      },
      "primary_street_1": {
        "title": "Primary Street 1",
        "type": "string",
        "description": "Line 1 of the street for the primary address."
      },
      "primary_street_2": {
        "title": "Primary Street 2",
        "type": "string",
        "description": "Line 2 of the street for the primary address."
      }
    }
  },
  "name": {
    "title": "Company Name",
    "type": "string"
  },
  "description": {
    "title": "Description",
    "type": "string"
  },
  "industry": {
    "title": "Industry",
    "description": "The field or industry that the company operates within.",
    "type": "string"
  },
  "number_of_employees": {
    "title": "Number of Employees",
    "type": "number"
  },
  "company_url": {
    "title": "Company URL",
    "type": "string",
    "format": "uri",
  },
}
{
  "address":
  {
    "primary_city": "New York",
    "primary_country": "USA",
    "primary_postal_code": "10001",
    "primary_state": "NY",
    "primary_street_1": "20 W 34th St",
    "primary_street_2": "Apt 101"
  },
  "name": "Endgrate",
  "description": "Leading developer company.",
  "industry": "Technology",
  "number_of_employees": 500,
  "company_url": "https://endgrate.com"
}