{
  "info": {
    "_postman_id": "2af0f2e4-eade-4914-a024-d7c86cec1f3c",
    "name": "Apex Sightline Vision EHR API",
    "description": "**Apex Sightline\u2122** is Parker Apex's FHIR-first Vision EHR product line. Partners integrate via\nthe shared gateway at `api.parkerapex.com/fhir/R4` with GPID-scoped OAuth and required headers.\n\nAll clinical, eligibility, and billing records map to standard FHIR R4 resources. Specialty\nworkflows include refraction, visual acuity, IOP, retinal imaging, OCT, visual field,\n`VisionPrescription` lifecycle, optical fulfillment, and vision claim type (`vision`).\n\n**Golden bundle:** `docs/schemas/specialty/sightline-golden-bundle.r4.json`\n**Product code:** `sightline` \u00b7 **Claim type:** `vision`\n\nRequired partner headers on every write:\n- `X-Apex-Actor-GPID` \u2014 organizational actor GPID\n- `X-Apex-Subject-GPID` \u2014 patient GPID\n- `X-Apex-Source` \u2014 integration source identifier\n",
    "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/fhir/R4",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "REPLACE_WITH_TOKEN",
      "type": "string"
    }
  ],
  "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": "{}"
            }
          }
        }
      ]
    }
  ]
}