> ## Documentation Index
> Fetch the complete documentation index at: https://hmis-docs.derrickmugabwa.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a clinic-scoped diagnostic requisition



## OpenAPI

````yaml /openapi-staff.yaml get /diagnostic-requisitions/{diagnosticRequisition}
openapi: 3.1.0
info:
  title: HMIS Staff Workflow API
  version: 1.0.0
  description: >-
    Clinic-scoped patient registration, appointments, outpatient visits, and
    clinical workspace operations.
servers:
  - url: https://jaliprohmis.derrickmugabwa.dev/api/v1
    description: HMIS staging API
security:
  - bearerAuth: []
tags:
  - name: Staff patients
  - name: Staff appointments
  - name: Staff outpatient visits
  - name: Staff clinical workspace
paths:
  /diagnostic-requisitions/{diagnosticRequisition}:
    get:
      tags:
        - Staff clinical workspace
      summary: Get a clinic-scoped diagnostic requisition
      operationId: getStaffDiagnosticRequisition
      parameters:
        - $ref: '#/components/parameters/DiagnosticRequisitionId'
      responses:
        '200':
          $ref: '#/components/responses/ObjectResponse'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    DiagnosticRequisitionId:
      name: diagnosticRequisition
      in: path
      required: true
      schema:
        type: integer
  responses:
    ObjectResponse:
      description: Resource returned.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ObjectEnvelope'
    NotFound:
      description: >-
        Resource is outside the authenticated staff clinic scope or does not
        exist.
  schemas:
    ObjectEnvelope:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum staff token

````