Companies
- enrich - Enrich a company profile
- list_employees - List company employees
- list_jobs - List company jobs
- search - Search Companies
Enrich a company profile
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.EnrichCompanyRequest(
id='a05dfc2d-df7c-4c78-8a1b-a928fc816742',
)
res = s.companies.enrich(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.EnrichCompanyRequest | ✔️ | The request object to use for the request. |
operations.EnrichCompanyResponse
List company employees
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.ListEmployeesRequest(
id='cb739205-9293-496f-aa75-96eb10faaa23',
offset='corporis',
per_page='explicabo',
)
res = s.companies.list_employees(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.ListEmployeesRequest | ✔️ | The request object to use for the request. |
operations.ListEmployeesResponse
List company jobs
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.ListJobsRequest(
id='c5955907-aff1-4a3a-afa9-467739251aa5',
offset='odit',
per_page='quo',
)
res = s.companies.list_jobs(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.ListJobsRequest | ✔️ | The request object to use for the request. |
Search Companies
import sdk
from sdk.models import operations
s = sdk.SDK(
security=shared.Security(
bearer_auth="",
),
)
req = operations.SearchCompaniesApplicationJSON(
filter='sequi',
limit='tenetur',
page='ipsam',
query='id',
)
res = s.companies.search(req)
if res.body is not None:
# handle response
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.SearchCompaniesApplicationJSON | ✔️ | The request object to use for the request. |