Skip to content

Latest commit

 

History

History
executable file
·
89 lines (57 loc) · 3.24 KB

README.md

File metadata and controls

executable file
·
89 lines (57 loc) · 3.24 KB

people

Overview

People

Available Operations

enrich

Enrich a person profile

Example Usage

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

Parameters

Parameter Type Required Description
request operations.EnrichPersonRequest ✔️ The request object to use for the request.

Response

operations.EnrichPersonResponse

search

Search People

Example Usage

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

Parameters

Parameter Type Required Description
request operations.SearchPeopleApplicationJSON ✔️ The request object to use for the request.

Response

operations.SearchPeopleResponse