## List HRIS providers **get** `/v1/employers/hris-providers` Returns the distinct HRIS/payroll providers across the same book `GET /v1/employers` returns, sorted for display. Use these as the values for the employers list's `hris_provider` filter — filter on `provider`, show `provider_label`. The stored providers are free text, so they cannot be enumerated in advance. ### Returns - `data: array of { provider, provider_label }` - `provider: string` HRIS/payroll provider id, as stored on the connection (e.g. `adp_run`). Filter with this. - `provider_label: string` Display name of that provider (e.g. `ADP Run`). ### Example ```http curl https://api.vitablehealth.com/v1/employers/hris-providers \ -H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" ``` #### Response ```json { "data": [ { "provider": "adp_run", "provider_label": "ADP Run" }, { "provider": "paychex_flex", "provider_label": "Paychex Flex" } ] } ```