from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.policies.list_companies()
print(response.companies)
{
"companies": [
{
"id": "<string>",
"name": "<string>"
}
],
"count": 123
}
Retrieve a list of companies.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.policies.list_companies()
print(response.companies)
{
"companies": [
{
"id": "<string>",
"name": "<string>"
}
],
"count": 123
}
Company name to filter by
Number of results to skip
Maximum number of results to return
Successfully retrieved companies