GET
/
api
/
v2
/
policies
/
companies
Python
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
}

Query Parameters

company_name
string

Company name to filter by

skip
number

Number of results to skip

limit
number

Maximum number of results to return

Response

200
application/json

Successfully retrieved companies