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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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: null
  title: Grdn.routes.impl.membership API
  description: Eden Health Inc. primary backend API service.
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'
      operationId: postV2MembershipCode
      x-operation-id-source: derived
  /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: {}
      operationId: getV2MembershipValidate
      x-operation-id-source: derived
    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'
      operationId: postV2MembershipValidate
      x-operation-id-source: derived
  /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

        maps of form {:first-name ''Bob'' :last-name ''Dobalina'' :email ''a@b.c''};

        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
      operationId: getV2MembershipByPatientIdFamily
      x-operation-id-source: derived
  /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,

        if they are all valid, creates a patient invite with the given email address and a unique code for each

        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'
      operationId: postV2MembershipByPatientIdInvite
      x-operation-id-source: derived
  /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
      operationId: getV2MembershipByPatientIdPendingInvites
      x-operation-id-source: derived