People
Enrich a person profile
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.EnrichPersonRequest(
id='d019da1f-fe78-4f09-bb00-74f15471b5e6',
)
res = s.people.enrich(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.EnrichPersonRequest | ✔️ | The request object to use for the request. |
operations.EnrichPersonResponse
Search People
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.SearchPeopleApplicationJSON(
filter='repudiandae',
limit='quae',
page='ipsum',
query='quidem',
)
res = s.people.search(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.SearchPeopleApplicationJSON | ✔️ | The request object to use for the request. |