GET
/
medical
/
v1
/
network-entry

This is a paginated endpoint. For more information see pagination.

Query Params

filter
string

How to filter network entries. It uses Metriport’s filter/search criteria based on the main properties of a Network: the organization’s name, address, oid and root organization. Any search terms you use search across all of these fields.

One can combine fields as needed, for example:

  • metriport or sutter will return all networks at least one of metriport or sutter in their data.
  • metriport -market will return all networks with metriport in their data but without market in their data.
  • metriport 150 will return all networks with metriport and the number 150 in their data, such as metriport with an address at 150 Market Street.

The filters are not case sensitive, but do match only against full words. i.e. acme will find Acme Health Network, while Acm will not.

Response

All Networks according to the provided filters and pagination params.

networkEntries
NetworkEntry[]
{
  "meta": {
    "itemsOnPage": 2
  },
  "networkEntries": [
    {
      "id": "2.16.840.1.113883.3.9621.1",
      "name": "Acme Health Network",
      "rootOrganization": "Acme Healthcare Systems",
      "managingOrgId": "2.16.840.1.113883.3.9621.0",
      "state": "CA",
      "zip": "94105"
    },
    {
      "id": "2.16.840.1.113883.3.9621.2",
      "name": "Acme Health Partners",
      "rootOrganization": "Acme Healthcare Systems",
      "managingOrgId": "2.16.840.1.113883.3.9621.0",
      "state": "CA",
      "zip": "94612"
    }
  ]
}