Elation Health Patient Provider Teams API

The Patient Provider Teams API from Elation Health — 2 operation(s) for patient provider teams.

Operations 2

GET /patient-provider-teams List Provider Teams #
GET /patient-provider-teams/{team_id}/team_members List Team Members for a given team #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/elation-health-patient-provider-teams-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

elation-health-patient-provider-teams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Settings Patient Provider Teams API
  version: unknown
servers:
- url: https://sandbox.elationemr.com/api/2.0
security:
- sec0: []
tags:
- name: Patient Provider Teams
paths:
  /patient-provider-teams:
    get:
      summary: List Provider Teams
      description: ''
      operationId: get-patient-provider-teams
      parameters:
      - name: Authorization
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"count\": 2,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"patient_provider_team_id\": 140758828450078,\n            \"patient_id\": 140758827991041,\n            \"team_members\": [\n                {\n                    \"patient_provider_team_id\": 140758828450078,\n                    \"patient_provider_team_member_id\": 140758828515615,\n                    \"patient_id\": 140758827991041,\n                    \"physician_id\": 131074,\n                    \"group\": \"main\",\n                    \"rank\": 1,\n                    \"treatment_reason\": \"pcp at sacred heart\",\n                    \"earliest_activity\": \"2022-05-17T20:11:24\",\n                    \"latest_activity\": \"2022-05-17T20:11:24\",\n                    \"activity_summary_last_refreshed\": null\n                }\n            ]\n        },\n        {\n            \"patient_provider_team_id\": 140758897525022,\n            \"patient_id\": 140758896934913,\n            \"team_members\": []\n        }\n    ]\n}"
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    example: 2
                    default: 0
                  next: {}
                  previous: {}
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        patient_provider_team_id:
                          type: integer
                          example: 140758828450078
                          default: 0
                        patient_id:
                          type: integer
                          example: 140758827991041
                          default: 0
                        team_members:
                          type: array
                          items:
                            type: object
                            properties:
                              patient_provider_team_id:
                                type: integer
                                example: 140758828450078
                                default: 0
                              patient_provider_team_member_id:
                                type: integer
                                example: 140758828515615
                                default: 0
                              patient_id:
                                type: integer
                                example: 140758827991041
                                default: 0
                              physician_id:
                                type: integer
                                example: 131074
                                default: 0
                              group:
                                type: string
                                example: main
                              rank:
                                type: integer
                                example: 1
                                default: 0
                              treatment_reason:
                                type: string
                                example: pcp at sacred heart
                              earliest_activity:
                                type: string
                                example: '2022-05-17T20:11:24'
                              latest_activity:
                                type: string
                                example: '2022-05-17T20:11:24'
                              activity_summary_last_refreshed: {}
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      x-readme:
        code-samples:
        - language: python
          code: "import requests\nimport json\n\naccess_token = \"TyEPKw8fVGRKpCBa81ygwjCLXDNIAm\"\nauth_header = \"Bearer %s\" % (access_token)\n\nresp = requests.get(\"https://sandbox.elationemr.com/api/2.0/patient-provider-teams\",\n                    headers={'Authorization': auth_header})\n\nprint(resp.status_code)\nprint(json.dumps(json.loads(resp.content), indent=2))"
        samples-languages:
        - python
      tags:
      - Patient Provider Teams
  /patient-provider-teams/{team_id}/team_members:
    get:
      summary: List Team Members for a given team
      description: ''
      operationId: list-patientproviderteammembers-of-a-given-team
      parameters:
      - name: Authorization
        in: header
        required: true
        schema:
          type: string
      - name: team_id
        in: path
        description: The identifier of the patient provider team
        schema:
          type: integer
          format: int32
        required: true
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"count\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n          {\n            \"patient_provider_team_id\": 140758828450078,\n            \"patient_provider_team_member_id\": 140758828515615,\n            \"patient_id\": 140758827991041,\n            \"physician_id\": 131074,\n            \"group\": \"main\",\n            \"rank\": 1,\n            \"treatment_reason\": \"pcp at sacred heart\",\n            \"earliest_activity\": \"2022-05-17T20:11:24\",\n            \"latest_activity\": \"2022-05-17T20:11:24\",\n            \"activity_summary_last_refreshed\": null\n        }\n    ]\n}"
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    example: 1
                    default: 0
                  next: {}
                  previous: {}
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        patient_provider_team_id:
                          type: integer
                          example: 140758828450078
                          default: 0
                        patient_provider_team_member_id:
                          type: integer
                          example: 140758828515615
                          default: 0
                        patient_id:
                          type: integer
                          example: 140758827991041
                          default: 0
                        physician_id:
                          type: integer
                          example: 131074
                          default: 0
                        group:
                          type: string
                          example: main
                        rank:
                          type: integer
                          example: 1
                          default: 0
                        treatment_reason:
                          type: string
                          example: pcp at sacred heart
                        earliest_activity:
                          type: string
                          example: '2022-05-17T20:11:24'
                        latest_activity:
                          type: string
                          example: '2022-05-17T20:11:24'
                        activity_summary_last_refreshed: {}
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      x-readme:
        code-samples:
        - language: python
          code: "import requests\nimport json\n\naccess_token = \"TyEPKw8fVGRKpCBa81ygwjCLXDNIAm\"\nauth_header = \"Bearer %s\" % (access_token)\n\nresp = requests.get(\"https://sandbox.elationemr.com/api/2.0/patient-provider-teams/{{id}}/team_members\",\n                    headers={'Authorization': auth_header})\n\nprint(resp.status_code)\nprint(json.dumps(json.loads(resp.content), indent=2))"
        samples-languages:
        - python
      tags:
      - Patient Provider Teams
components:
  securitySchemes:
    sec0:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://example.com/oauth2/token
          scopes: {}
x-readme:
  headers: []
x-readme-fauxas: true