{
  "info": {
    "_postman_id": "98438d67-247a-4759-a9b2-d755d66fa49d",
    "name": "Apex Platform \u2014 All APIs",
    "description": "Every Apex Platform API in one collection \u2014 one folder per product. Set {{access_token}} once; override {{base_url}} per product/environment (production vs sandbox.api.parkerapex.com).",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{access_token}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.parkerapex.com",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "REPLACE_WITH_TOKEN",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "APEX Nexus Platform API",
      "item": [
        {
          "name": "Platform",
          "item": [
            {
              "name": "Platform health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/health",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "health"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Readiness probe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ready",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ready"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "FHIR R4",
          "item": [
            {
              "name": "FHIR R4 CapabilityStatement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/metadata",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "metadata"
                  ]
                },
                "description": "Describes supported resources, search parameters, and operations."
              }
            },
            {
              "name": "Search Patient resources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "Patient"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create Patient resource",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "Patient"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Read Patient by id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/Patient/{id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "Patient",
                    "{id}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Search Observation resources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "Observation"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Process FHIR transaction Bundle",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Bulk FHIR data export ($export)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/$export",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    "$export"
                  ]
                },
                "description": "Initiates asynchronous NDJSON bulk export. Poll `Content-Location` until complete."
              }
            }
          ]
        },
        {
          "name": "SMART",
          "item": [
            {
              "name": "SMART on FHIR discovery",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/R4/.well-known/smart-configuration",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "R4",
                    ".well-known",
                    "smart-configuration"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "OAuth 2.0 token endpoint",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/oauth/token",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "oauth",
                    "token"
                  ]
                },
                "description": "Client credentials and authorization code grants for SMART and partner integrations.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Mobile",
          "item": [
            {
              "name": "Patient mobile dashboard (Pulse PHR)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/mobile/api/patient/dashboard",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "mobile",
                    "api",
                    "patient",
                    "dashboard"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "List patient appointments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/mobile/api/patient/appointments",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "mobile",
                    "api",
                    "patient",
                    "appointments"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Patient medical records summary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/mobile/api/patient/medical-records",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "mobile",
                    "api",
                    "patient",
                    "medical-records"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Update linked patient demographics for Pulse user",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/pulse/profile",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pulse",
                    "profile"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Unified appointments and requests for Pulse patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/pulse/appointments",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pulse",
                    "appointments"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Patient-initiated appointment request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/pulse/appointments",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pulse",
                    "appointments"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Secure message threads for Pulse patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/pulse/messages",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pulse",
                    "messages"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Identity",
          "item": [
            {
              "name": "Resolve or create GPID from demographics",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/resolve",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "resolve"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Semantic",
          "item": [
            {
              "name": "Federated semantic data query",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/semantic/query",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "semantic",
                    "query"
                  ]
                },
                "description": "POST structured resource blocks; fans out to registered Nexus adapters with purpose-of-use enforcement.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Discover semantic adapter resource types",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/semantic/schema",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "semantic",
                    "schema"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Clinical",
          "item": [
            {
              "name": "Validate cohort criteria DSL and return match count",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/cohort/count",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "cohort",
                    "count"
                  ]
                },
                "description": "Returns `501` with `criteria_valid` until lake-backed matching engine ships (Phase 2).",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "List schedulable clinical providers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/providers",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "providers"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create staff-scheduled appointment",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/appointments",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "appointments"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Update appointment fields",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/appointments/{appointment_id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "appointments",
                    "{appointment_id}"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Soft-cancel an appointment",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/appointments/{appointment_id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "appointments",
                    "{appointment_id}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "30-day readmission analytics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/analytics/readmissions",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "analytics",
                    "readmissions"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Chronic disease prevalence and comorbidity trends",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/analytics/disease-trends",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "analytics",
                    "disease-trends"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "HEDIS and CMS Star quality measures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/analytics/quality",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "analytics",
                    "quality"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Cohort size for combined demographic/clinical filters",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/analytics/cohorts",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "analytics",
                    "cohorts"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Telehealth sessions for provider workspace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/telehealth/sessions",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "telehealth",
                    "sessions"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Role distribution and recent admin activity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/admin/overview",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "admin",
                    "overview"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Live ePrescribing integration health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/integrations/eprescribing/status",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "integrations",
                    "eprescribing",
                    "status"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Prescriber EPCS enrollment status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/eprescribing/enrollment",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "eprescribing",
                    "enrollment"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Production cutover certification checklist",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/v2/eprescribing/certification",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "eprescribing",
                    "certification"
                  ]
                },
                "description": ""
              }
            }
          ]
        }
      ]
    },
    {
      "name": "FHIR Data Lake API",
      "item": [
        {
          "name": "FHIR R4",
          "item": [
            {
              "name": "HAPI FHIR CapabilityStatement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/metadata",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "metadata"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Search Patient resources in the lake",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create Patient in HAPI lake",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Bulk Export",
          "item": [
            {
              "name": "Bulk NDJSON export from lake",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/$export",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "$export"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Ingest",
          "item": [
            {
              "name": "Ingest FHIR Bundle into lake pipeline",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/ingest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "ingest"
                  ]
                },
                "description": "Validates resources, applies GPID + tenant contract, writes to BigQuery staging and HAPI.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Quality",
          "item": [
            {
              "name": "Data quality metrics by layer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/quality",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "quality"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Lake platform overview",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/overview",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "overview"
                  ]
                },
                "description": "Total resources, storage, layer statistics, CDC lag, freshness."
              }
            }
          ]
        },
        {
          "name": "Lineage",
          "item": [
            {
              "name": "Provenance and lineage for a lake resource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/lineage/{resource_id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "lineage",
                    "{resource_id}"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Datasets",
          "item": [
            {
              "name": "Curated dataset catalog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/datasets",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "datasets"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "GPID Master",
          "item": [
            {
              "name": "GPID master index search",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/gpid-master/search",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "gpid-master",
                    "search"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Beacon Ingest API",
      "item": [
        {
          "name": "Beacon Ingest",
          "item": [
            {
              "name": "Request a direct upload URL",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/beacon/api/uploads/signed-url",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "beacon",
                    "api",
                    "uploads",
                    "signed-url"
                  ]
                },
                "description": "Requires Beacon auth and `patient/*.write` permission. Generates a short-lived GCS PUT URL for direct browser upload.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Finalize a direct upload",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/beacon/api/uploads/finalize",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "beacon",
                    "api",
                    "uploads",
                    "finalize"
                  ]
                },
                "description": "Creates Beacon document metadata and enqueues the processing pipeline. Requires Beacon auth and `patient/*.write` permission.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "SMART Health Cards",
          "item": [
            {
              "name": "SMART Health Card ingest verification (Implemented)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/smart-health-cards/ingest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "smart-health-cards",
                    "ingest"
                  ]
                },
                "description": "Verifies SMART Health Card/SMART Health Link payloads, checks temporal constraints, records each verification decision, and returns a deterministic `verification_id` for readback. In production, set `SMART_HEALTH_CARD_VERIFY_MODE=strict` and enforce issuer allow-listing.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "SMART Health Card verification status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/smart-health-cards/verification",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "smart-health-cards",
                    "verification"
                  ]
                },
                "description": "Retrieve deterministic verification status and evidence for a prior ingest request.\n"
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Prime Wearables API",
      "item": [
        {
          "name": "Wearables",
          "item": [
            {
              "name": "Ingest raw vendor telemetry",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/wearables/events",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "wearables",
                    "events"
                  ]
                },
                "description": "Accept vendor-native telemetry payload and enqueue normalization.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Ingest raw vendor telemetry (gateway alias)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/v1/prime/ingest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "v1",
                    "prime",
                    "ingest"
                  ]
                },
                "description": "Gateway-compatible alias for Prime ingest. This operation maps to the\ncanonical Prime flow at POST /wearables/events.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get ingestion status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/wearables/events/{ingestionId}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "wearables",
                    "events",
                    "{ingestionId}"
                  ]
                },
                "description": "Check normalization and FHIR persistence status for an ingestion job."
              }
            }
          ]
        },
        {
          "name": "FHIR",
          "item": [
            {
              "name": "Submit pre-normalized Prime observation",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "Observation"
                  ]
                },
                "description": "Create a FHIR Observation from Prime canonical metric schema.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Upsert device provenance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/Device/{deviceIdentityHash}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "Device",
                    "{deviceIdentityHash}"
                  ]
                },
                "description": "Ensure every telemetry observation references a known source Device.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Alerts",
          "item": [
            {
              "name": "Retrieve Prime readiness flags",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fhir/Flag",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fhir",
                    "Flag"
                  ]
                },
                "description": "Retrieve readiness alerts represented as FHIR Flag resources."
              }
            }
          ]
        }
      ]
    },
    {
      "name": "CMS Ecosystem API",
      "item": [
        {
          "name": "SDK",
          "item": [
            {
              "name": "List CMS Health Tech Ecosystem SDKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/cms-ecosystem/sdk-catalog",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "cms-ecosystem",
                    "sdk-catalog"
                  ]
                },
                "description": "Returns the SDK catalog for the CMS Health Tech Ecosystem, including\nTypeScript, Python, and Java packages with GPID-aware patient resolution\nand dual-verified data helpers.\n"
              }
            }
          ]
        },
        {
          "name": "Partners",
          "item": [
            {
              "name": "Submit a CMS partner application",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/cms-ecosystem/partners",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "cms-ecosystem",
                    "partners"
                  ]
                },
                "description": "Self-service partner onboarding. Creates a pending GPID for the\napplicant organization and enqueues it for ecosystem approval.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get partner info by GPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/cms-ecosystem/partners/{gpid}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "cms-ecosystem",
                    "partners",
                    "{gpid}"
                  ]
                },
                "description": "Returns partner details and lifecycle events."
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Horizon Analytics API",
      "item": [
        {
          "name": "Horizon",
          "item": [
            {
              "name": "Module health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/health",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "health"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Build semantic federated query plan from natural language",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/query/nl",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "query",
                    "nl"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Execute previously generated semantic plan and return compiled SQL",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/query/execute",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "query",
                    "execute"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Compute Horizon Score",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/horizon-score/compute",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "horizon-score",
                    "compute"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Build war-room summary payload",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/war-room/summary",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "war-room",
                    "summary"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Launch WGS or RNA-seq pipeline",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/pipelines/launch",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "pipelines",
                    "launch"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get pipeline run status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/pipelines/{run_id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "pipelines",
                    "{run_id}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Run variant interpretation",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/interpretation/variant",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "interpretation",
                    "variant"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get interpretation case",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/interpretation/case/{case_id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "interpretation",
                    "case",
                    "{case_id}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Compute PRS output",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/pophealth/prs/compute",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "pophealth",
                    "prs",
                    "compute"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Simulate cohort digital twin",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/pophealth/cohorts/simulate-digital-twin",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "pophealth",
                    "cohorts",
                    "simulate-digital-twin"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Estimate intervention effect for subpopulation",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/pophealth/rwe/intervention-effect",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "pophealth",
                    "rwe",
                    "intervention-effect"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "(Deprecated) Monolithic NL query",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/query",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "query"
                  ]
                },
                "description": "Deprecated \u2014 use POST /horizon/v1/query/nl to build a plan, then POST /horizon/v1/query/execute.\nSunset 2026-09-12.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "(Deprecated) Risk score via GET",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/horizon/v1/risk-score",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "horizon",
                    "v1",
                    "risk-score"
                  ]
                },
                "description": "Deprecated \u2014 use POST /horizon/v1/horizon-score/compute with GPID and feature payload. Sunset 2026-09-12."
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Horizon Identity & GPID API",
      "item": [
        {
          "name": "Identity",
          "item": [
            {
              "name": "Match incoming demographics to an existing GPID without creating a record",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/match",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "match"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Resolve or create GPID",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/resolve",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "resolve"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Merge one or more GPIDs into a survivor GPID",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/merge",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "merge"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Split one GPID into two or more new identities",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/split",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "split"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get identity record by GPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/identity/{gpid}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "identity",
                    "{gpid}"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Plexus GPID",
          "item": [
            {
              "name": "Full lifecycle timeline for a specific GPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/{gpid_value}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "{gpid_value}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Suspend a GPID",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/{gpid_value}/suspend",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "{gpid_value}",
                    "suspend"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Revoke a GPID permanently",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/{gpid_value}/revoke",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "{gpid_value}",
                    "revoke"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "GPIDs with elevated risk scores",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/anomalies",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "anomalies"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Dormant GPIDs with no recent activity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/dormant",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "dormant"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Export full GPID registry (JSON)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/gpid/export",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "gpid",
                    "export"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "IAM Access Health Score (0-100)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/api/health-score",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "api",
                    "health-score"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Currently active sessions with geolocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/api/active-sessions",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "api",
                    "active-sessions"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "SOC 2, ISO 27001, GDPR, HITRUST compliance checklist",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/plexus/api/compliance-status",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "plexus",
                    "api",
                    "compliance-status"
                  ]
                },
                "description": ""
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Catalyst Genomics API",
      "item": [
        {
          "name": "Variants",
          "item": [
            {
              "name": "Search genomic variants",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/variants",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "variants"
                  ]
                },
                "description": "Query genetic variants with filtering by gene, chromosome, classification,\nand actionability. All results include dual-verification status.\n"
              }
            },
            {
              "name": "Get variant detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/variants/{variantId}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "variants",
                    "{variantId}"
                  ]
                },
                "description": "Retrieve full details for a single genetic variant including clinical significance, population frequency, and drug response data."
              }
            }
          ]
        },
        {
          "name": "Biomarkers",
          "item": [
            {
              "name": "List biomarkers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/biomarkers",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "biomarkers"
                  ]
                },
                "description": "Retrieve biomarker measurements with filtering by type, status, and patient.\nSupports time-range filtering for trend analysis.\n"
              }
            }
          ]
        },
        {
          "name": "Analysis",
          "item": [
            {
              "name": "Submit bioinformatics analysis",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/analysis",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "analysis"
                  ]
                },
                "description": "Submit a new bioinformatics analysis job. The analysis is queued for\nasynchronous processing. Poll GET /analysis/{id} for results.\nA GPID is resolved or created for the patient on submission.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get analysis results",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/analysis/{analysisId}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "analysis",
                    "{analysisId}"
                  ]
                },
                "description": "Retrieve status and results for a bioinformatics analysis job."
              }
            }
          ]
        },
        {
          "name": "Pipelines",
          "item": [
            {
              "name": "List pipeline runs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/pipeline-runs",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "pipeline-runs"
                  ]
                },
                "description": "Retrieve recent pipeline execution status across all analyses."
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Velocity RCM API",
      "item": [
        {
          "name": "Dashboard",
          "item": [
            {
              "name": "Unified RCM dashboard metrics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/dashboard",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "dashboard"
                  ]
                },
                "description": "Returns high-level revenue cycle KPIs including claims pipeline counts,\nnet revenue, AR aging buckets, denial summary, and payer mix.\n"
              }
            }
          ]
        },
        {
          "name": "Claims",
          "item": [
            {
              "name": "Claims lifecycle with filtering",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/claims",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "claims"
                  ]
                },
                "description": "Returns a filtered, paginated list of claims across the revenue cycle.\n"
              }
            }
          ]
        },
        {
          "name": "Analytics",
          "item": [
            {
              "name": "Revenue analytics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/analytics",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "analytics"
                  ]
                },
                "description": "Returns revenue analytics for a specified period including gross/net\nrevenue, collection rates, monthly trend, payer performance, and AR summary.\n"
              }
            }
          ]
        },
        {
          "name": "Denials",
          "item": [
            {
              "name": "Denial management",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/denials",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "denials"
                  ]
                },
                "description": "Returns denial details with actionable triage information, appeal\ndeadlines, and recommended actions.\n"
              }
            }
          ]
        },
        {
          "name": "Clearinghouse",
          "item": [
            {
              "name": "Stedi partnership health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/v1/clearinghouse/stedi/health",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "v1",
                    "clearinghouse",
                    "stedi",
                    "health"
                  ]
                },
                "description": "Public health report for the Parker Apex / Stedi clearinghouse partnership.\nUsed by the developer portal status page and go-live runbooks.\n"
              }
            },
            {
              "name": "Real-time 270/271 eligibility (Stedi)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/v1/clearinghouse/eligibility",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "v1",
                    "clearinghouse",
                    "eligibility"
                  ]
                },
                "description": "Submit a JSON eligibility inquiry; Stedi handles X12 270/271 translation.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Real-time 276/277 claim status (Stedi)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/v1/clearinghouse/claims/status",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "v1",
                    "clearinghouse",
                    "claims",
                    "status"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Submit 837P professional claim (Stedi)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/v1/clearinghouse/claims/submit",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "v1",
                    "clearinghouse",
                    "claims",
                    "submit"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Ledger & FedNow API",
      "item": [
        {
          "name": "Dashboard",
          "item": [
            {
              "name": "Ledger dashboard summary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": []
                },
                "description": "High-level billing and payments summary with monthly trends."
              }
            }
          ]
        },
        {
          "name": "Health Vault",
          "item": [
            {
              "name": "Health Vault patient financial overview",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/vault",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "vault"
                  ]
                },
                "description": "Returns unified patient financial records including coverage summaries,\noutstanding claims, active payment plans, recent payments, and balances.\nStaff users see an aggregate view unless patient_id is specified.\nPatient users are automatically scoped to their own records.\n"
              }
            }
          ]
        },
        {
          "name": "Credit",
          "item": [
            {
              "name": "Medical Credit Score",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/credit-score",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "credit-score"
                  ]
                },
                "description": "Returns an internal medical credit score for a patient based on payment\nhistory, failed payments, and overdue plan status. Does not affect\nexternal credit bureau reports.\n"
              }
            }
          ]
        },
        {
          "name": "Transactions",
          "item": [
            {
              "name": "Unified transaction ledger",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/transactions",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "transactions"
                  ]
                },
                "description": "Paginated, filterable list of all payments, refunds, and disbursements\nacross the platform with aggregate statistics.\n"
              }
            }
          ]
        },
        {
          "name": "FedNow",
          "item": [
            {
              "name": "FedNow integration status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/fednow/status",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "fednow",
                    "status"
                  ]
                },
                "description": "Returns current FedNow connectivity, enrollment progress, capabilities,\nand compliance configuration. This is a placeholder endpoint that will\nbe expanded as the FedNow integration matures.\n"
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Pulse Billing API",
      "item": [
        {
          "name": "Tiers",
          "item": [
            {
              "name": "List available Pulse tiers with pricing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/tiers",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "tiers"
                  ]
                },
                "description": "Return all available Pulse subscription tiers with pricing and feature lists. This endpoint is public and requires no authentication."
              }
            }
          ]
        },
        {
          "name": "Subscriptions",
          "item": [
            {
              "name": "Create a new Pulse subscription",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/subscribe",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "subscribe"
                  ]
                },
                "description": "Create a Stripe subscription for the authenticated user at the specified tier.\nFor the free tier, no Stripe subscription is created \u2014 the user is simply\nmarked as subscribed at the free level.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Get current subscription status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/status",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "status"
                  ]
                },
                "description": "Return the authenticated user's current Pulse subscription tier, status, features, and billing details."
              }
            },
            {
              "name": "Upgrade or downgrade subscription tier",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/change-tier",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "change-tier"
                  ]
                },
                "description": "Change the authenticated user's Pulse subscription to a different tier.\nStripe handles proration automatically.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Cancel Pulse subscription",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/cancel",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "cancel"
                  ]
                },
                "description": "Cancel the authenticated user's Pulse subscription. By default cancels\nat the end of the current billing period. Set `immediate: true` to\ncancel immediately.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Portal",
          "item": [
            {
              "name": "Create a Stripe Customer Portal session",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/portal-session",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "portal-session"
                  ]
                },
                "description": "Create a Stripe Customer Portal session so the user can manage payment\nmethods, view invoices, and change or cancel subscriptions via Stripe's\nhosted portal UI.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Webhooks",
          "item": [
            {
              "name": "Handle Stripe webhook events",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/api/pulse/billing/webhook",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "api",
                    "pulse",
                    "billing",
                    "webhook"
                  ]
                },
                "description": "Receives and processes Stripe webhook events for Pulse subscriptions.\nThis endpoint is CSRF-exempt and validates events using the Stripe\nwebhook signature. No session authentication is required.\n\nHandled event types:\n- `invoice.paid` \u2014 payment succeeded\n- `invoice.payment_failed` \u2014 payment failed\n- `customer.subscription.deleted` \u2014 subscription canceled\n- `customer.subscription.updated` \u2014 subscription modified (logged)\n- `customer.subscription.created` \u2014 new subscription (logged)\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Apex Sightline Vision EHR API",
      "item": [
        {
          "name": "Conformance",
          "item": [
            {
              "name": "FHIR CapabilityStatement (includes VisionPrescription)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/metadata",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "metadata"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Identity",
          "item": [
            {
              "name": "Search vision patients by GPID or demographics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create patient (IdentityResolver required)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Scheduling",
          "item": [
            {
              "name": "Search exam appointments and recall slots",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Appointment",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Appointment"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Book vision exam appointment",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Appointment",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Appointment"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Clinical",
          "item": [
            {
              "name": "Search vision exam encounters",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Open vision exam encounter",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Search refraction, VA, IOP, and clinical observations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Observation"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Record refraction, visual acuity, IOP, or exam finding",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Observation"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Diagnostics",
          "item": [
            {
              "name": "Search OCT, visual field, and retinal imaging reports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DiagnosticReport",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DiagnosticReport"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Submit grouped diagnostic interpretation (OCT, visual field, fundus)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DiagnosticReport",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DiagnosticReport"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Prescriptions",
          "item": [
            {
              "name": "Search glasses and contact lens prescriptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/VisionPrescription",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "VisionPrescription"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create glasses or contact lens prescription",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/VisionPrescription",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "VisionPrescription"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Order frames, lenses, or optical fulfillment",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DeviceRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DeviceRequest"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Financial",
          "item": [
            {
              "name": "Vision benefits check (exam, materials, lenses, contacts)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/CoverageEligibilityRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "CoverageEligibilityRequest"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Submit vision claim or preauthorization (Claim.type = vision)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Claim",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Claim"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Read payer adjudication for vision claim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ClaimResponse",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ClaimResponse"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Search vision EOBs for patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ExplanationOfBenefit",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ExplanationOfBenefit"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Operational",
          "item": [
            {
              "name": "List vision exams for patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/sightline/v1/exams",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "sightline",
                    "v1",
                    "exams"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Open vision exam session",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/sightline/v1/exams",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "sightline",
                    "v1",
                    "exams"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Record refraction measurements (creates FHIR Observations)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/sightline/v1/exams/{examId}/refraction",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "sightline",
                    "v1",
                    "exams",
                    "{examId}",
                    "refraction"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Mark optical order fulfilled (frames/lenses/contacts)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/sightline/v1/prescriptions/{id}/fulfill",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "sightline",
                    "v1",
                    "prescriptions",
                    "{id}",
                    "fulfill"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Ingest OCT, visual field, or retinal imaging study",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/sightline/v1/imaging/studies",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "sightline",
                    "v1",
                    "imaging",
                    "studies"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Apex Odonto Dental EHR API",
      "item": [
        {
          "name": "Conformance",
          "item": [
            {
              "name": "FHIR CapabilityStatement (dental resource set)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/metadata",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "metadata"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Identity",
          "item": [
            {
              "name": "Search dental patients by GPID or demographics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create patient (IdentityResolver required)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Scheduling",
          "item": [
            {
              "name": "Search chair appointments and hygiene recall",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Appointment",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Appointment"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Book dental appointment",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Appointment",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Appointment"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Clinical",
          "item": [
            {
              "name": "Open dental visit encounter",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Search completed dental procedures (CDT-coded)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Procedure",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Procedure"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Post completed dental procedure",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Procedure",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Procedure"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Search treatment plans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/CarePlan",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "CarePlan"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Create dental treatment plan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/CarePlan",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "CarePlan"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Charting",
          "item": [
            {
              "name": "Search odontogram and periodontal chart observations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Observation"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Record tooth chart or periodontal finding",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Observation"
                  ]
                },
                "description": "Use tooth-number and tooth-surface extensions on Observation for odontogram entries.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Imaging",
          "item": [
            {
              "name": "Attach bitewing, panoramic, CBCT, or intraoral image",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DocumentReference",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DocumentReference"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Submit radiology narrative or grouped imaging report",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DiagnosticReport",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DiagnosticReport"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Lab",
          "item": [
            {
              "name": "Order lab work (crown, bridge, aligner, denture)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ServiceRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ServiceRequest"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Order dental appliance (night guard, retainer, aligner)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/DeviceRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "DeviceRequest"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Financial",
          "item": [
            {
              "name": "Dental benefits check (preventive, restorative, perio, ortho)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/CoverageEligibilityRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "CoverageEligibilityRequest"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Submit dental claim or preauthorization (Claim.type = oral)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Claim",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Claim"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Read payer adjudication for dental claim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ClaimResponse",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ClaimResponse"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Search dental EOBs for patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ExplanationOfBenefit",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ExplanationOfBenefit"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Operational",
          "item": [
            {
              "name": "Get odontogram and periodontal chart for patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/chart/{patientGpid}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "chart",
                    "{patientGpid}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "Update tooth/surface findings (maps to FHIR Observations)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/chart/{patientGpid}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "chart",
                    "{patientGpid}"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Create dental treatment plan (CarePlan + Tasks)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/treatment-plans",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "treatment-plans"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Post completed CDT-coded procedure to chart and claim queue",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/procedures/post",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "procedures",
                    "post"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Order crown, bridge, aligner, or denture from external lab",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/lab/orders",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "lab",
                    "orders"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Upload bitewing, panoramic, CBCT, or intraoral image",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/odonto/v1/imaging/upload",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "odonto",
                    "v1",
                    "imaging",
                    "upload"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "FHIR R4 REST API",
      "item": [
        {
          "name": "Conformance",
          "item": [
            {
              "name": "CapabilityStatement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/metadata",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "metadata"
                  ]
                },
                "description": "FHIR conformance metadata \u2014 supported resource types, interactions, and search parameters."
              }
            }
          ]
        },
        {
          "name": "SMART",
          "item": [
            {
              "name": "SMART on FHIR configuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/.well-known/smart-configuration",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    ".well-known",
                    "smart-configuration"
                  ]
                },
                "description": "OAuth authorization and token endpoints, supported scopes, and launch capabilities."
              }
            }
          ]
        },
        {
          "name": "Patient",
          "item": [
            {
              "name": "Search Patients",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": "Search Patient resources by name, identifier (GPID), birthdate, and other search parameters."
              }
            },
            {
              "name": "Create Patient",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Read Patient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Patient/{id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Patient",
                    "{id}"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Observation",
          "item": [
            {
              "name": "Search Observations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Observation",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Observation"
                  ]
                },
                "description": ""
              }
            }
          ]
        },
        {
          "name": "Bundle",
          "item": [
            {
              "name": "Submit FHIR Bundle",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": []
                },
                "description": "Transaction or batch Bundle for multi-resource ingest.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Bulk Export",
          "item": [
            {
              "name": "Bulk Data Export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/$export",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "$export"
                  ]
                },
                "description": "Initiate async bulk FHIR export (SMART Backend Services). Returns 202 with Content-Location polling URL."
              }
            }
          ]
        },
        {
          "name": "ADT",
          "item": [
            {
              "name": "Admit patient (create inpatient Encounter)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter/$admit",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter",
                    "$admit"
                  ]
                },
                "description": "Admit a patient to inpatient care. Creates an Encounter with class `inpatient`\nand status `in-progress`, sets the admission timestamp, and \u2014 when a bed\n`location` is supplied \u2014 marks that Location's operational status `Occupied`.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Transfer an admitted patient",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter/{id}/$transfer",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter",
                    "{id}",
                    "$transfer"
                  ]
                },
                "description": "Move an in-progress inpatient Encounter to a new bed/unit. Frees the\n`from` Location (set to `Housekeeping`) and occupies the `to` Location.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Discharge an admitted patient",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Encounter/{id}/$discharge",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Encounter",
                    "{id}",
                    "$discharge"
                  ]
                },
                "description": "Finish an inpatient Encounter. Sets status `finished`, records the discharge\ntimestamp and length of stay, and frees the bed (Location \u2192 `Housekeeping`).\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Orders",
          "item": [
            {
              "name": "Place an order (CPOE)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/ServiceRequest",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "ServiceRequest"
                  ]
                },
                "description": "Create a ServiceRequest for a lab, imaging study, procedure, or nursing\norder. `subject` (Patient) and `code` are required; `requester` defaults to\nthe authenticated practitioner when omitted.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Bed Management",
          "item": [
            {
              "name": "Create a Location (facility, ward, room, or bed)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Location",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Location"
                  ]
                },
                "description": "",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Update a Location (bed status)",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/Location/{id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "Location",
                    "{id}"
                  ]
                },
                "description": "Update a Location \u2014 primarily to change bed occupancy. Accepts a compact\n`operationalStatus` shorthand (`occupied`, `unoccupied`, `housekeeping`,\n`closed`, `contaminated`, `isolated`) or a full FHIR CodeableConcept.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Audit",
          "item": [
            {
              "name": "Search AuditEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/AuditEvent",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "AuditEvent"
                  ]
                },
                "description": "Query the security audit log. AuditEvent records who accessed or acted on\nthe system, when, and from where \u2014 the audit trail required for ONC (g)(10).\n"
              }
            },
            {
              "name": "Read AuditEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/AuditEvent/{id}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "AuditEvent",
                    "{id}"
                  ]
                },
                "description": ""
              }
            }
          ]
        }
      ]
    },
    {
      "name": "TEFCA Gateway API",
      "item": [
        {
          "name": "XCPD",
          "item": [
            {
              "name": "Inbound patient discovery",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/xcpd/discover",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "xcpd",
                    "discover"
                  ]
                },
                "description": "Handle inbound XCPD patient discovery from an external QHIN participant.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Outbound patient discovery",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/xcpd/search",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "xcpd",
                    "search"
                  ]
                },
                "description": "Search for a patient at an external QHIN using Parker GPID and optional demographics.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "(Deprecated) Patient discovery alias",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/v1/patient-discovery",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "v1",
                    "patient-discovery"
                  ]
                },
                "description": "Deprecated \u2014 use POST /tefca/xcpd/search (outbound) or POST /tefca/xcpd/discover (inbound).\nSunset 2026-09-12.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "XCA",
          "item": [
            {
              "name": "Inbound resource query",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/xca/query",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "xca",
                    "query"
                  ]
                },
                "description": "Handle inbound XCA query from an external QHIN for FHIR resources by GPID.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Outbound resource query",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/xca/search",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "xca",
                    "search"
                  ]
                },
                "description": "Query an external QHIN for patient resources by GPID.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "Outbound document retrieve (ITI-39)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/xca/retrieve",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "xca",
                    "retrieve"
                  ]
                },
                "description": "Retrieve a specific clinical document from an external QHIN partner network.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "(Deprecated) Document query alias",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/v1/document-query",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "v1",
                    "document-query"
                  ]
                },
                "description": "Deprecated \u2014 use POST /tefca/xca/search (outbound) or POST /tefca/xca/query (inbound).\nSunset 2026-09-12.\n",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            },
            {
              "name": "(Deprecated) Directed exchange alias",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/v1/directed-exchange",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "v1",
                    "directed-exchange"
                  ]
                },
                "description": "Deprecated \u2014 use KONZA Health Direct messaging via network directory endpoints. Sunset 2026-09-12.",
                "body": {
                  "mode": "raw",
                  "raw": "{}"
                }
              }
            }
          ]
        },
        {
          "name": "Directory",
          "item": [
            {
              "name": "TEFCA exchange audit log",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/exchanges",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "exchanges"
                  ]
                },
                "description": "Partner-scoped list of recent XCPD/XCA transactions."
              }
            },
            {
              "name": "List QHIN network partners",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/directory",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "directory"
                  ]
                },
                "description": "Public directory of active QHIN participants and capability flags."
              }
            },
            {
              "name": "Get QHIN partner details",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/directory/{oid}",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "directory",
                    "{oid}"
                  ]
                },
                "description": ""
              }
            },
            {
              "name": "QHIN partner connectivity health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/directory/{oid}/health",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "directory",
                    "{oid}",
                    "health"
                  ]
                },
                "description": "Directory registration, endpoint configuration, mTLS readiness, and optional endpoint probe."
              }
            },
            {
              "name": "KONZA Health QHIN connectivity health",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{base_url}}/tefca/partners/konza/health",
                  "host": [
                    "{{base_url}}"
                  ],
                  "path": [
                    "tefca",
                    "partners",
                    "konza",
                    "health"
                  ]
                },
                "description": "Parker Apex designated QHIN partner \u2014 used by the developer portal status page."
              }
            }
          ]
        }
      ]
    }
  ]
}