[GET] - Contact Lookup

  • Updated

Use the Target API's Contact Lookup endpoint to search new contacts in a specific company.

The elements in the contact list contain a newid value and enough additional information such that a user could narrow down a selection from the list. Using the selected newid values you can retrieve additional contact information through the Target API's New Contact Details endpoint.

Endpoint

GET https://api.insideview.com/api/v1/target/company/{companyId}/contacts

Request

HTTP Headers

Header Name Type Required Description
accessToken String Yes

Valid access token.
See Authentication and Authorization Overview for more details.

Accept String No Selects the response's content type.  
Valid values are application/json and application/xml (default).

URI Parameters

Parameter Name Type Required Description
companyId string Yes A valid string and integer company ID

Query Parameters

Parameter Name Type Required Description
jobFunctionV2 Integer No A comma-separated list of a newer version of job function ID.
See API Reference Data for a list of IDs.
jobLevelV2 Integer No A comma-separated list of a newer version of job level ID.
See API Reference Data for a list of IDs.
jobFunction Integer No A comma-separated list of job function ID.
See API Reference Data for a list of IDs.
jobLevel Integer No A comma-separated list of job level ID.
See API Reference Data for a list of IDs.
keyword String No Keyword string that will be matched against titles
peopleStates String No Comma separated list of States
peopleCities String No Comma separated list of Cities
peopleArea String No Area for the search
peopleAddress String No Address for the search
active String No  If present will return only active or inactive records, depending on the value (true or false)
isEmailRequired String No If present and equals to true, the API will return only contact having an email address. 
isPhoneRequired String No If present and equals to true, the API will return only contact having a phone number.
phoneType String  No

Accepts DIRECT, CORP, MOBILE, and ANY to find the corresponding contact's phone numbers. 

Note: The Direct phone number is only available for InsideView customers and not OEM partners.

Mobile phone numbers are now available via the InsideView APIs for customers and partners who have purchased Elite or the mobile phone add-on to Enterprise. 

emailValidationStatus String  No  It allows you to retrieve the validation status of the email. You can enter a comma-separated string with possible values i.e. ValidDomain and ValidEmail.  
minContactConfidenceScore String  No  The minimum contact confidence score. The valid values range from 0 to 100
maxContactConfidenceScore String  No  The maximum contact confidence score. The valid values range from 0 to 100.  
page Integer No The page number of the result-set to return.
Default: 1
resultsPerPage Integer No The number of results in a page request.
Min: 1, Max: 50, Default: 10
hasContactInfo Boolean No Pass it as 'true' to filter contacts with either a phone number or email. When you pass it as 'false', contact records in response will neither have a phone number nor email.
excludedContacts String No Comma separated contact ids not part of result.

1: the request should include at least one of the three mandatory parameters. 

HTTP 200 Responses

Here are the major responses the API may return.

For details on the errors, see API Error Codes.

Returns either a JSON or XML data structure depending on the request Accept header. 

Name type Description
contacts Array  Array of search results
contacts contactId String  InsideView New Contact ID 
contacts companyId Integer Contact's InsideView Company ID
contacts companyName String Contact's company name
contacts titles List List of titles (String)
contacts emailMD5Hash String MD5 hash of the contact's email
contacts active Boolean Indicate if the contact record corresponds to an active or inactive employment
contactsemailValidationStatus String Indicates the status of the email such as ValidEmail or ValidDomain
contacts hasEmail Boolean Indicate if the contact record includes an email address
contacts hasPhone Boolean Indicate if the contact record includes a phone number
contacts phoneType String Indicate if the contact record includes a corporate, direct or mobile phone number of an executive
contacts hasFacebookHandle Boolean Indicate if the contact record includes a Facebook handle
contacts hasLinkedinHandle Boolean Indicate if the contact record includes a LinkedIn handle
contacts hasTwitterHandle Boolean Indicate if the contact record includes a Twitter handle
contactsjobLevels List List of job levels ( String )
contactsjobFunctions List List of job functions ( String )
contactspeopleId String People id of the contact
page Integer Page number in the result set
resultsPerPage Integer Number of search result per page
totalResults Integer Total number of search results

 

Type: application/json

Schema

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "description": "The list of contact Search Results",
  "properties": {
    "contacts": {
      "id": "contacts",
      "type": "array",
      "items": {
        "id": "0",
        "type": "object",
        "properties": {
          "contactId": {
            "id": "contactId",
            "type": "string"
          },
          "companyId": {
            "id": "companyId",
            "type": "integer"
          },
          "companyName": {
            "id": "companyName",
            "type": "string"
          },
          "titles": {
		      "id": "titles",
		      "type": "array",
		      "items": {
		        "id": "0",
		        "type": "string"
		      }
		    },
          "emailMd5Hash": {
            "id": "emailMd5Hash",
            "type": "string"
          },
          "emailValidationStatus": {
            "id": "emailValidationStatus",
            "type": "string"
          },
          "emails": {
            "id": "emails",
            "type": "array",
            "items": {
              "id": "0",
              "type": "object",
              "properties": {
                "emailMd5Hash": {
                  "id": "emailMd5Hash",
                  "type": "string"
                },
                "validationStatus": {
                  "id": "validationStatus",
                  "type": "string"
                }
              } 
            }
          },
          "hasPhone": {
            "id": "hasPhone",
            "type": "boolean"
          },
          "hasEmail": {
            "id": "hasEmail",
            "type": "boolean"
          },
          "hasFacebookHandle": {
            "id": "hasFacebookHandle",
            "type": "boolean"
          },
          "hasTwitterHandle": {
            "id": "hasTwitterHandle",
            "type": "boolean"
          },
          "hasLinkedInHandle": {
            "id": "hasLinkedInHandle",
            "type": "boolean"
          },
          "active": {
            "id": "active",
            "type": "boolean"
          },
          "jobLevels": {
		      "id": "jobLevels",
		      "type": "array",
		      "items": {
		        "id": "0",
		        "type": "string"
		      }
		    },
		  "jobFunctions": {
		      "id": "jobFunctions",
		      "type": "array",
		      "items": {
		        "id": "0",
		        "type": "string"
		      }
		    },
		  "jobLevelsV2": {
      		  "id": "jobLevelsV2",
      		  "type": "array",
            "items": {
               "id": "0",
               "type": "object",
               "properties": {
                     "id": {
                        "id": "id",
                        "type": "string"
                     },
                     "name": {
                        "id": "name",
                        "type": "string"
                     }
               }
         }
      },
    	  "jobFunctionsV2": {
      		 "id": "jobFunctionsV2",
     		   "type": "array",
    	     "items": {
               "id": "0",
               "type": "object",
               "properties": {
                     "id": {
                        "id": "id",
                        "type": "string"
                     },
                     "name": {
                        "id": "name",
                        "type": "string"
                     }
               }
         }
      },
		  "peopleId": {
            "id": "peopleId",
            "type": "string"
          },
          "confidenceScore": {
            "id": "confidenceScore",
            "type": "number"
          }
        }
      }
    },
    "totalResults": {
      "id": "totalResults",
      "type": "string"
    },
    "page": {
      "id": "page",
      "type": "string"
    },
    "resultsPerPage": {
      "id": "resultsPerPage",
      "type": "string"
    }
  }
}

Example

{
  "totalResults": 713,
  "page": 1,
  "resultsPerPage": 10,
  "contacts": [
    {
      "contactId": "6Kt1XlclfGkwwkQ5PIESSbsNbIZdmBLbBwCYOJgviitWeXAsux90w18J3PMGOIVt",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Vice President, Global Sales & Operations at Google Enterprise"
      ],
      "hasPhone": true,
      "phoneType":"CORP",
      "hasEmail": false,
      "hasFacebookHandle": false,
      "hasTwitterHandle": true,
      "hasLinkedInHandle": true,
      "active": true,
      "jobLevels": [
        "3"
      ],
      "jobFunctions": [
        "6",
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "6Kt1XlclfGkwwkQ5PIESSW_CRg8xeyyurp9tKxtLR8wpEAOnrj91y0pspSxm-xOv",
      "confidenceScore": 0.70
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoRZHtWJVI1eFKImfMp3NILEnb7YYBaY6QCkDlL7GihCL",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Regional Director Sales and Marketing, New York"
      ],
      "hasPhone": true,
      "phoneType":"CORP",
      "hasEmail": false,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1",
        "2"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "gqCfdjNhFPaU2kf9FYTQGF8ft9OJ71eeg9JKWDobPpmgsWUaOQCifOyBtEz0Pxx4",
      "confidenceScore": 0.71
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoQTI61766HdRPBFxSgKOM9usaXKc08BPWmQIcqa3zmUO",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Head of Inside Sales"
      ],
      "hasPhone": true,
      "phoneType":"DIRECT",
      "hasEmail": false,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "QDi0k2FHovaLby53gzAstRLVV7Ca8NEa5YQNzgaCps0fq1NQnTFn4tktj0KDY4se",
      "confidenceScore": 0.72
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoRogk84kWjwD4eZurWxTMQgTFe39Zgn58lQBOIKspZgI",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        " Head of Geo Sales - North America"
      ],
      "emailMd5Hash": "4e246e2056d2549a9b4f9c2629c981fb",
      "emailValidationStatus": "ValidDomain",
      "emails": [
      	{
      	  "emailMd5Hash":  "4e246e2056d2549a9b4f9c2629c981fb",
          "validationStatus": "ValidDomain"	
        }
      ],
      "hasPhone": false,
      "hasEmail": true,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "vGu40RAISSkU8-EIxrQf3VlNush8kVJqN7kTNc8M3iTnXH7laM0TiUSrZ5P_It3f",
      "confidenceScore": 0.73
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoUBiTnMzQj1xIKLcQ8wTAgglV8zKmJrRElrJj6mbzLk3",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Vice President US Sales, Retail and Technology"
      ],
      "hasPhone": false,
      "hasEmail": false,
      "hasFacebookHandle": false,
      "hasTwitterHandle": false,
      "hasLinkedInHandle": true,
      "active": true,
      "jobLevels": [
        "3"
      ],
      "jobFunctions": [
        "7",
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "Jp9AT6SgeYMeVE1r9XzsMOYsB74Vj2mtsDnLoDHSnTptWAL59kuRQiher8LqJYSb",
      "confidenceScore": 0.74
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoTcBsdjFsuAQoBfWVpk7_-dl0asPznBXHMLutr7gDXeN",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Head of Performance Media Agencies, Agency Business Development"
      ],
      "emailMd5Hash": "cc4ad9d6b381c7294a9a5a5fca6f1101",
      "emailValidationStatus": "ValidDomain",
      "emails": [
      	{
      	  "emailMd5Hash":  "cc4ad9d6b381c7294a9a5a5fca6f1101",
          "validationStatus": "ValidDomain"	
        }
      ],
      "hasPhone": true,
      "phoneType":"CORP",
      "hasEmail": true,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1",
        "2"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "Kq0yVOh7LeVuf7g8OIRD37EOXNPXQWYewYqG6nxfNtmuN781Vf4XvmuMbAtFsfat",
      "confidenceScore": 0.75
    },
    {
      "contactId": "RtAQCfBKDqHDOghtle5Wm77qO7gH31tV5NrMm764IBk3sO8Sr7YvxvfRufI42nEd",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Sales Operations, Enterprise Team"
      ],
      "hasPhone": true,
      "phoneType":"CORP",
      "hasEmail": false,
      "active": true,
      "jobLevels": [
        "7"
      ],
      "jobFunctions": [
        "6",
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "6Kt1XlclfGkwwkQ5PIESSTewIAgesJAIf_lQNaGuRZTD2aHDUyKNmM8b7h9LaCSw",
      "confidenceScore": 0.76
    },
    {
      "contactId": "RtAQCfBKDqHDOghtle5Wmw12VryCwJM792zmS8f3scQAC3o7iQgCcf2zKrxR_leP",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Director of Sales, Google Enterprise"
      ],
      "hasPhone": true,
      "phoneType":"DIRECT",
      "hasEmail": false,
      "hasFacebookHandle": true,
      "hasTwitterHandle": false,
      "hasLinkedInHandle": false,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "6Kt1XlclfGkwwkQ5PIESSVSi2YUUpC8UnUD7NtJ8Gv3bvDWqV4ebk1hnf6CEWgab",
      "confidenceScore": 0.77
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoV02qWZJBCbEAkHvIbuYI1Hkfn7QITp5r4Zu6fgg6XkY",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Director of Programmatic Media & Platform Sales"
      ],
      "hasPhone": true,
      "phoneType":"CORP",
      "hasEmail": false,
      "hasFacebookHandle": true,
      "hasTwitterHandle": false,
      "hasLinkedInHandle": true,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "5",
        "1",
        "2"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "Kq0yVOh7LeVuf7g8OIRD36SSju08wfFNzaFr-nPxdRbBxql9vjkA2Cojq-MsxsWs",
      "confidenceScore": 0.78
    },
    {
      "contactId": "1WhHImR7pXLvHsM8ffnIoZHeQ6Yyv0FgRsUdacJscHqaTw8mxHYgLTdYDn0GZCsB",
      "companyId": 736233,
      "companyName": "Google, Inc.",
      "titles": [
        "Head of Sales, DoubleClick Media Platforms"
      ],
      "emailMd5Hash": "23b23f15fa471046259fb84bd1bb5bad",
      "emailValidationStatus": "ValidEmail",
      "emails": [
      	{
      	  "emailMd5Hash":  "23b23f15fa471046259fb84bd1bb5bad",
          "validationStatus": "ValidEmail"	
        }
      ],
      "hasPhone": false,
      "hasEmail": true,
      "active": true,
      "jobLevels": [
        "4"
      ],
      "jobFunctions": [
        "1",
        "2"
      ],
      "jobLevelsV2": [
          {
            "id": "0",
            "name": "Board Member"
          },
          {
            "id": "1",
            "name": "C Level"
          }
      ],
      "jobFunctionsV2": [
          {
            "id": "22",
            "name": "Others"
          }
      ],
      "peopleId": "544KN90XokCKSBrKF8FkX9A9kgHejWA4XpDcmBS_nttlzlcW5LvQNIbtOXNPSDla",
      "confidenceScore": 0.79
    }
  ]
}

Type: application/xml

Schema

<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="contacts">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="contact" maxOccurs="unbounded" minOccurs="0">
          <xs:complexType>
            <xs:sequence>
              <xs:element type="xs:string" name="active"/>
              <xs:element type="xs:int" name="companyId"/>
              <xs:element type="xs:string" name="companyName"/>
              <xs:element type="xs:decimal" name="confidenceScore" minOccurs="0" maxOccurs="1"/>
              <xs:element type="xs:string" name="contactId"/>
              <xs:element type="xs:string" name="emailMd5Hash" minOccurs="0"/>
              <xs:element type="xs:string" name="emailValidationStatus" minOccurs="0"/>
              <xs:element name="emails" minOccurs="0">
                <xs:complexType>
                  <xs:sequence>
				    <xs:element ref="email" minOccurs="0" maxOccurs="unbounded" />
				  </xs:sequence>
                </xs:complexType>
              </xs:element>
              <xs:element type="xs:string" name="hasEmail"/>
              <xs:element type="xs:string" name="hasFacebookHandle" minOccurs="0"/>
              <xs:element type="xs:string" name="hasLinkedInHandle" minOccurs="0"/>
              <xs:element type="xs:string" name="hasPhone"/>
              <xs:element type="xs:string" name="hasTwitterHandle" minOccurs="0"/>
              <xs:element name="jobFunctions">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element type="xs:byte" name="jobFunction" maxOccurs="unbounded" minOccurs="0"/>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
              <xs:element name="jobLevels">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element type="xs:byte" name="jobLevel"/>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
              <xs:element name="jobLevelsV2" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="jobLevelV2" type="jobLevelsV2andjobFunctionsV2DTO" minOccurs="0"
							maxOccurs="unbounded" />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="jobFunctionsV2" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="jobFunctionV2" type="jobLevelsV2andjobFunctionsV2DTO" minOccurs="0"
							maxOccurs="unbounded" />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
              <xs:element type="xs:string" name="peopleId"/>
              <xs:element type="xs:string" name="titles"/>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <xs:element type="xs:byte" name="page"/>
        <xs:element type="xs:byte" name="resultsPerPage"/>
        <xs:element type="xs:short" name="totalResults"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:complexType name="jobLevelsV2andjobFunctionsV2DTO">
		<xs:sequence>
			<xs:element name="id" type="xs:string" minOccurs="1" maxOccurs="1"/>
			<xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
  <xs:element name="email" type="emailDTO" />
  <xs:complexType name="emailDTO">
    <xs:sequence>
      <xs:element name="emailMd5Hash" type="xs:string" minOccurs="0" />
      <xs:element name="validationStatus" type="xs:string" minOccurs="0" />
	</xs:sequence>
  </xs:complexType>
</xs:schema>

Example

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<contacts>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.70</confidenceScore>
        <contactId>6Kt1XlclfGkwwkQ5PIESSbsNbIZdmBLbBwCYOJgviitWeXAsux90w18J3PMGOIVt</contactId>
        <hasEmail>false</hasEmail>
        <hasFacebookHandle>false</hasFacebookHandle>
        <hasLinkedInHandle>true</hasLinkedInHandle>
        <hasPhone>true</hasPhone>
        <phoneType>CORP</phoneType>
        <hasTwitterHandle>true</hasTwitterHandle>
        <jobFunctions>
            <jobFunction>6</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>3</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>6Kt1XlclfGkwwkQ5PIESSW_CRg8xeyyurp9tKxtLR8wpEAOnrj91y0pspSxm-xOv</peopleId>
        <titles>Vice President, Global Sales &amp; Operations at Google Enterprise</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.71</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoRZHtWJVI1eFKImfMp3NILEnb7YYBaY6QCkDlL7GihCL</contactId>
        <hasEmail>false</hasEmail>
        <hasPhone>true</hasPhone>
        <phoneType>CORP</phoneType>
        <jobFunctions>
            <jobFunction>2</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>gqCfdjNhFPaU2kf9FYTQGF8ft9OJ71eeg9JKWDobPpmgsWUaOQCifOyBtEz0Pxx4</peopleId>
        <titles>Regional Director Sales and Marketing, New York</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.72</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoQTI61766HdRPBFxSgKOM9usaXKc08BPWmQIcqa3zmUO</contactId>
        <hasEmail>false</hasEmail>
        <hasPhone>true</hasPhone>
        <phoneType>DIRECT</phoneType>
        <jobFunctions>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>QDi0k2FHovaLby53gzAstRLVV7Ca8NEa5YQNzgaCps0fq1NQnTFn4tktj0KDY4se</peopleId>
        <titles>Head of Inside Sales</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.73</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoRogk84kWjwD4eZurWxTMQgTFe39Zgn58lQBOIKspZgI</contactId>
        <emailMd5Hash>4e246e2056d2549a9b4f9c2629c981fb</emailMd5Hash>
        <emailValidationStatus>ValidDomain</emailValidationStatus>
        <emails>
        	<email>
        		<emailMd5Hash>4e246e2056d2549a9b4f9c2629c981fb</emailMd5Hash>
        		<validationStatus>ValidDomain</validationStatus>
        	</email>
        </emails>
        <hasEmail>true</hasEmail>
        <hasPhone>false</hasPhone>
        <jobFunctions>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>vGu40RAISSkU8-EIxrQf3VlNush8kVJqN7kTNc8M3iTnXH7laM0TiUSrZ5P_It3f</peopleId>
        <titles> Head of Geo Sales - North America</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.74</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoUBiTnMzQj1xIKLcQ8wTAgglV8zKmJrRElrJj6mbzLk3</contactId>
        <hasEmail>false</hasEmail>
        <hasFacebookHandle>false</hasFacebookHandle>
        <hasLinkedInHandle>true</hasLinkedInHandle>
        <hasPhone>false</hasPhone>
        <hasTwitterHandle>false</hasTwitterHandle>
        <jobFunctions>
            <jobFunction>7</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>3</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>Jp9AT6SgeYMeVE1r9XzsMOYsB74Vj2mtsDnLoDHSnTptWAL59kuRQiher8LqJYSb</peopleId>
        <titles>Vice President US Sales, Retail and Technology</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.75</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoTcBsdjFsuAQoBfWVpk7_-dl0asPznBXHMLutr7gDXeN</contactId>
        <emailMd5Hash>cc4ad9d6b381c7294a9a5a5fca6f1101</emailMd5Hash>
        <emailValidationStatus>ValidDomain</emailValidationStatus>
        <emails>
        	<email>
        		<emailMd5Hash>cc4ad9d6b381c7294a9a5a5fca6f1101</emailMd5Hash>
        		<validationStatus>ValidDomain</validationStatus>
        	</email>
        </emails>
        <hasEmail>true</hasEmail>
        <hasPhone>false</hasPhone>
        <jobFunctions>
            <jobFunction>2</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
       <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>Kq0yVOh7LeVuf7g8OIRD37EOXNPXQWYewYqG6nxfNtmuN781Vf4XvmuMbAtFsfat</peopleId>
        <titles>Head of Performance Media Agencies, Agency Business Development</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.76</confidenceScore>
        <contactId>RtAQCfBKDqHDOghtle5Wm77qO7gH31tV5NrMm764IBk3sO8Sr7YvxvfRufI42nEd</contactId>
        <hasEmail>false</hasEmail>
        <hasPhone>true</hasPhone>
        <phoneType>CORP</phoneType>
        <jobFunctions>
            <jobFunction>6</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>7</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>6Kt1XlclfGkwwkQ5PIESSTewIAgesJAIf_lQNaGuRZTD2aHDUyKNmM8b7h9LaCSw</peopleId>
        <titles>Sales Operations, Enterprise Team</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.77</confidenceScore>
        <contactId>RtAQCfBKDqHDOghtle5Wmw12VryCwJM792zmS8f3scQAC3o7iQgCcf2zKrxR_leP</contactId>
        <hasEmail>false</hasEmail>
        <hasFacebookHandle>true</hasFacebookHandle>
        <hasLinkedInHandle>false</hasLinkedInHandle>
        <hasPhone>true</hasPhone>
        <phoneType>CORP</phoneType>
        <hasTwitterHandle>false</hasTwitterHandle>
        <jobFunctions>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>6Kt1XlclfGkwwkQ5PIESSVSi2YUUpC8UnUD7NtJ8Gv3bvDWqV4ebk1hnf6CEWgab</peopleId>
        <titles>Director of Sales, Google Enterprise</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.78</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoV02qWZJBCbEAkHvIbuYI1Hkfn7QITp5r4Zu6fgg6XkY</contactId>
        <hasEmail>false</hasEmail>
        <hasFacebookHandle>true</hasFacebookHandle>
        <hasLinkedInHandle>true</hasLinkedInHandle>
        <hasPhone>true</hasPhone>
        <phoneType>CORP</phoneType>
        <hasTwitterHandle>false</hasTwitterHandle>
        <jobFunctions>
            <jobFunction>2</jobFunction>
            <jobFunction>1</jobFunction>
            <jobFunction>5</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>Kq0yVOh7LeVuf7g8OIRD36SSju08wfFNzaFr-nPxdRbBxql9vjkA2Cojq-MsxsWs</peopleId>
        <titles>Director of Programmatic Media &amp; Platform Sales</titles>
    </contact>
    <contact>
        <active>true</active>
        <companyId>736233</companyId>
        <companyName>Google, Inc.</companyName>
        <confidenceScore>0.79</confidenceScore>
        <contactId>1WhHImR7pXLvHsM8ffnIoZHeQ6Yyv0FgRsUdacJscHqaTw8mxHYgLTdYDn0GZCsB</contactId>
        <emailMd5Hash>23b23f15fa471046259fb84bd1bb5bad</emailMd5Hash>
        <emailValidationStatus>ValidEmail</emailValidationStatus>
        <emails>
        	<email>
        		<emailMd5Hash>23b23f15fa471046259fb84bd1bb5bad</emailMd5Hash>
        		<validationStatus>ValidEmail</validationStatus>
        	</email>
        </emails>
        <hasEmail>true</hasEmail>
        <hasPhone>true</hasPhone>
        <phoneType>DIRECT</phoneType>
        <jobFunctions>
            <jobFunction>2</jobFunction>
            <jobFunction>1</jobFunction>
        </jobFunctions>
        <jobLevels>
            <jobLevel>4</jobLevel>
        </jobLevels>
        <jobLevelsV2>
            <jobLevelV2>
                <id>0</id>
                <name>Board Member</name>
            </jobLevelV2>
            <jobLevelV2>
                <id>1</id>
                <name>C Level</name>
            </jobLevelV2>
        </jobLevelsV2>
        <jobFunctionsV2>
            <jobFunctionV2>
                <id>22</id>
                <name>Others</name>
            </jobFunctionV2>
        </jobFunctionsV2>
        <peopleId>544KN90XokCKSBrKF8FkX9A9kgHejWA4XpDcmBS_nttlzlcW5LvQNIbtOXNPSDla</peopleId>
        <titles>Head of Sales, DoubleClick Media Platforms</titles>
    </contact>
    <page>1</page>
    <resultsPerPage>10</resultsPerPage>
    <totalResults>713</totalResults>
</contacts>

 

HTTP 400

Invalid query parameter(s).

HTTP 401

Unauthorized Error - Cannot use API's without setting a valid accessToken in header.

HTTP 405

Method Not Allowed - Your are not allowed to access this API.

HTTP 429

Request is throttled.