563848e0ecc0
List groups matching filter criteria
Returns a paginated list of groups for the requesting tenant that match all supplied filter criteria (filters are combined with AND semantics); all filters are optional, and omitting them returns every group for the tenant. Use this endpoint to enumerate or search across groups; for a known certifyGroupId use GET /groups/{id}, and for autocomplete-style name/NPI/TIN prefix search use GET /groups/search. Pagination is offset-based via page and size; the default page size is 2 and no maximum page size is enforced.
Query parameters
Filters by case-insensitive substring match on the group's affiliation. Free text; not validated against an enum.
Search by associated location name (partial, case-insensitive)
Search by associated location NPI (exact 10-digit match)
Filters by case-insensitive substring match on the group's name.
Filters by exact, case-sensitive match on the group's NPI.
Page number for offset-based pagination (0-based index). Defaults to 0 if not specified.
Number of items per page in offset-based pagination. Defaults to 2 if not specified. No maximum page size is enforced.
Filters by exact, case-sensitive match on the group's TIN.
Filters by exact, case-sensitive match on the group's type. Free text; not validated against an enum.
Headers
Response
Paginated envelope of group records matching the supplied filters
Example response
{
"totalCount": 1,
"identifiersSearched": 2,
"matchedCount": 1,
"notFoundCount": 1,
"unmatchedIdentifiers": [
"9999999999"
]
}