Luma Health Schedulers API

Scheduler

Operations 1

PUT /schedulers/{schedulerId} Update a scheduler #

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/luma-health-schedulers-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

luma-health-schedulers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 2.0.0
  title: Rest-Service Schedulers API
  x-logo:
    url: https://lumahealth-assets.s3.us-west-2.amazonaws.com/new_luma_logo_black.png
    backgroundColor: '#FFFFFF'
    altText: Luma Health
  description: OpenAPI [Basic Structure](https://swagger.io/docs/specification/basic-structure/)
servers:
- url: https://api.lumahealth.io/api/v2
security:
- Bearer: []
tags:
- name: schedulers
  description: Scheduler
paths:
  /schedulers/{schedulerId}:
    put:
      summary: Update a scheduler
      operationId: schedulerUpdate
      tags:
      - schedulers
      parameters:
      - name: schedulerId
        in: path
        required: true
        schema:
          type: string
          pattern: '[0-9a-f]'
          minLength: 24
          maxLength: 24
      requestBody:
        description: A scheduler (full or partial) to be updated
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SchedulerRequestUpdate'
      responses:
        '200':
          description: Reminder
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    default: ok
                  statusCode:
                    type: integer
                    default: 200
        '401':
          description: Not authenticated
        '403':
          description: Access token does not have the required scope
components:
  schemas:
    SchedulerRequestUpdate:
      type: object
      required:
      - date
      - endDate
      properties:
        locked:
          type: boolean
        showEntireDay:
          type: boolean
          default: false
        date:
          type: integer
        endDate:
          type: integer
        facility:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        provider:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        status:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        statusReason:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        statusSource:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        type:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        insuranceVerificationStatus:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        billingTransactionStatus:
          type: object
          properties:
            in:
              type: array
              items:
                type: string
            nin:
              type: array
              items:
                type: string
        modality:
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT