Eden Health grdn.routes.impl.careteam API

The grdn.routes.impl.careteam API from Eden Health — 2 operation(s) for grdn.routes.impl.careteam.

Operations 3

GET /v2/careteams get-all-careteams-handler
PUT /v2/patient/{patient-id}/careteam update-patient-careteam-handler
GET /v2/patient/{patient-id}/careteam get-patient-careteam-handler

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/eden-health-grdn-routes-impl-careteam-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

eden-health-grdn-routes-impl-careteam-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.0'
  title: Grdn grdn.handler Grdn.routes.impl.careteam API
  description: Eden Health Inc. primary backend API service.
servers:
- url: https://api.edenhealth.com/
tags:
- name: grdn.routes.impl.careteam
  description: null
paths:
  /v2/careteams:
    get:
      summary: get-all-careteams-handler
      description: Gets the careteams from postgres.
      tags:
      - grdn.routes.impl.careteam
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    created-at: {}
                    updated-at: {}
                    name:
                      type: string
                    empanelment-status:
                      enum:
                      - closed
                      - open
                      - closed_to_new_sponsors
                      type: string
                  required:
                  - id
                  - created-at
                  - updated-at
                  - name
                  - empanelment-status
                  title: grdn.specs.careteam/careteam
  /v2/patient/{patient-id}/careteam:
    put:
      summary: update-patient-careteam-handler
      description: Updates a patient's careteam and/or usual provider in Athena.
      tags:
      - grdn.routes.impl.careteam
      parameters:
      - in: path
        name: patient-id
        description: 'origin spec: grdn.specs.careteam/update-patient-careteam-params'
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema: {}
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                careteam-id:
                  type: string
                  format: uuid
                athena-provider-id:
                  type: integer
                  format: int64
              required:
              - careteam-id
              title: grdn.specs.careteam/update-patient-careteam-params
        description: 'origin spec: grdn.specs.careteam/update-patient-careteam-params'
    get:
      summary: get-patient-careteam-handler
      description: Gets the patient's careteam id.
      tags:
      - grdn.routes.impl.careteam
      parameters:
      - in: path
        name: patient-id
        description: 'origin spec: grdn.specs.careteam/get-patient-careteam'
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                required:
                - id
                title: grdn.specs.careteam/get-patient-careteam-response