PersonlookupService
A list of all methods in the PersonlookupService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
person_lookup_get_person_lookup |
person_lookup_get_person_lookup
- HTTP Method:
GET
- Endpoint:
/api/v2/personlookup/getpersonlookup
Parameters
Name | Type | Required | Description |
---|---|---|---|
social_security_number | str | ❌ | String that contains social security number |
phone_number | str | ❌ | String that contains mobile phone number |
country_code | str | ❌ | Country where the contact is registered |
Return Type
ContactSearchResult
Example Usage Code Snippet
from voyado_engage import VoyadoEngage, Environment
sdk = VoyadoEngage(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value
)
result = sdk.personlookup.person_lookup_get_person_lookup(
social_security_number="socialSecurityNumber",
phone_number="phoneNumber",
country_code="countryCode"
)
print(result)
Build Your Own SDKs with liblab
Build developer friendly SDKs in minutes from your APIs