Skip to main content

PersonlookupService

A list of all methods in the PersonlookupService service. Click on the method name to view detailed information about that method.

MethodsDescription
PersonLookup_GetPersonLookup

PersonLookup_GetPersonLookup

  • HTTP Method: GET
  • Endpoint: /api/v2/personlookup/getpersonlookup

Parameters

NameTypeRequiredDescription
socialSecurityNumberstringString that contains social security number
phoneNumberstringString that contains mobile phone number
countryCodestringCountry where the contact is registered

Return Type

ContactSearchResult

Example Usage Code Snippet

import { VoyadoEngage } from 'voyado_engage';

(async () => {
const voyadoEngage = new VoyadoEngage({
token: 'YOUR_TOKEN',
});

const { data } = await voyadoEngage.personlookup.personLookupGetPersonLookup({
socialSecurityNumber: 'socialSecurityNumber',
phoneNumber: 'phoneNumber',
countryCode: 'countryCode',
});

console.log(data);
})();

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →