Eden Health grdn.routes.impl.membership API

Handlers for membership, invites, codes

Operations 6

POST /v2/membership/code send-code-handler-deprecated
GET /v2/membership/validate validate-code-handler
POST /v2/membership/validate validate-membership-handler
GET /v2/membership/{patient-id}/family get-family-handler
POST /v2/membership/{patient-id}/invite invite-dependents-handler
GET /v2/membership/{patient-id}/pending-invites get-pending-invites-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-membership-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-membership-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.0'
  title: Grdn grdn.handler Grdn.routes.impl.membership API
  description: Eden Health Inc. primary backend API service.
servers:
- url: https://api.edenhealth.com/
tags:
- name: grdn.routes.impl.membership
  description: Handlers for membership, invites, codes
paths:
  /v2/membership/code:
    post:
      summary: send-code-handler-deprecated
      description: Sends a registration code email.
      tags:
      - grdn.routes.impl.membership
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema: {}
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                work-email:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                invite-email:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                funnel-id:
                  type: string
                  format: uuid
              required:
              - work-email
              - invite-email
              title: grdn.specs/send-code-params
        description: 'origin spec: grdn.specs/send-code-params'
  /v2/membership/validate:
    get:
      summary: validate-code-handler
      description: Validates a registration code.
      tags:
      - grdn.routes.impl.membership
      parameters:
      - in: query
        name: member-code
        description: 'origin spec: grdn.specs/validate-code-params'
        required: true
        x-allOf:
        - type: string
        - {}
        schema:
          type: string
      - in: query
        name: email
        description: 'origin spec: grdn.specs/validate-code-params'
        required: true
        x-allOf:
        - type: string
        - {}
        schema:
          type: string
      - in: query
        name: invite-code
        description: 'origin spec: grdn.specs/validate-code-params'
        required: true
        x-allOf:
        - type: string
        - {}
        schema:
          type: string
      - in: query
        name: promo-code
        description: 'origin spec: grdn.specs/validate-code-params'
        required: true
        x-allOf:
        - type: string
        - {}
        schema:
          type: string
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema: {}
    post:
      summary: validate-membership-handler
      description: Validates a membership.
      tags:
      - grdn.routes.impl.membership
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema: {}
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                work-email:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                last-name:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                dob:
                  type: string
                zip:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                invite-email:
                  type: string
                  x-allOf:
                  - type: string
                  - {}
                funnel-id:
                  type: string
                  format: uuid
              required:
              - work-email
              - last-name
              - dob
              - zip
              - invite-email
              title: grdn.specs/validate-membership-params
        description: 'origin spec: grdn.specs/validate-membership-params'
  /v2/membership/{patient-id}/family:
    get:
      summary: get-family-handler
      description: "Gets a patient's family members who are also patients as an array of\n  maps of form {:first-name 'Bob' :last-name 'Dobalina' :email 'a@b.c'};\n  the family is filtered using the `-filter-family` function above"
      tags:
      - grdn.routes.impl.membership
      parameters:
      - in: path
        name: patient-id
        description: 'origin spec: grdn.specs/patient-id-params'
        required: true
        schema:
          type: string
          format: uuid
      - in: query
        name: funnel-id
        description: 'origin spec: grdn.specs/patient-id-params'
        required: false
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    first-name:
                      type: string
                      x-allOf:
                      - type: string
                      - {}
                    last-name:
                      type: string
                      x-allOf:
                      - type: string
                      - {}
                    email:
                      type: string
                      x-allOf:
                      - type: string
                      - {}
                  required:
                  - first-name
                  - last-name
                  - email
                  title: grdn.specs.membership/family-member
  /v2/membership/{patient-id}/invite:
    post:
      summary: invite-dependents-handler
      description: "Given a primary patient and a list of emails to invite, first validates the emails and,\n  if they are all valid, creates a patient invite with the given email address and a unique code for each\n  and sends each email address the invitation email with code."
      tags:
      - grdn.routes.impl.membership
      parameters:
      - in: path
        name: patient-id
        description: 'origin spec: grdn.specs/patient-id-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:
                funnel-id:
                  type: string
                  format: uuid
              title: grdn.specs/patient-id-params
        description: 'origin spec: grdn.specs/patient-id-params'
  /v2/membership/{patient-id}/pending-invites:
    get:
      summary: get-pending-invites-handler
      description: Gets a patient's invites as an array of email addresses
      tags:
      - grdn.routes.impl.membership
      parameters:
      - in: path
        name: patient-id
        description: 'origin spec: grdn.specs/patient-id-params'
        required: true
        schema:
          type: string
          format: uuid
      - in: query
        name: funnel-id
        description: 'origin spec: grdn.specs/patient-id-params'
        required: false
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    email:
                      type: string
                      x-allOf:
                      - type: string
                      - {}
                  required:
                  - email
                  title: grdn.specs.membership/email-entry