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

# GET /consultations/{consultation_id}/consultation_prescription_drugs



## OpenAPI

````yaml /openapi/nimbo_api.yml get /consultations/{consultation_id}/consultation_prescription_drugs
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /consultations/{consultation_id}/consultation_prescription_drugs:
    get:
      tags:
        - Consultations
      summary: GET /consultations/{consultation_id}/consultation_prescription_drugs
      operationId: >-
        legacy_nimbo_api_get__consultations_consultation_id_consultation_prescription_drugs
      parameters:
        - name: consultation_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  consultation_prescription_drugs:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        consultation_id:
                          type: integer
                        prescription_drug_id:
                          type: integer
                        prescription_id:
                          type: integer
                        name:
                          type: string
                        metadata:
                          type: object
                          properties:
                            prn:
                              type: boolean
                            locale:
                              type: string
                            dose_uom:
                              type: string
                            days_total:
                              type: integer
                        custom_name:
                          nullable: true
                        dose:
                          type: string
                        dose_uom:
                          type: string
                        frequency:
                          type: string
                        frequency_id:
                          nullable: true
                        duration:
                          type: string
                        via:
                          type: string
                        diagnosis1:
                          nullable: true
                        diagnosis2:
                          nullable: true
                        diagnosis3:
                          nullable: true
                        diagnosis1_code:
                          nullable: true
                        diagnosis2_code:
                          nullable: true
                        diagnosis3_code:
                          nullable: true
                        drug_value:
                          nullable: true
                        prn:
                          type: boolean
                        pending_prescription_delivery:
                          nullable: true
                        cirrus_sync_status:
                          nullable: true
                        account_id:
                          type: integer
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        initial_quantity:
                          type: integer
                        barcode:
                          nullable: true
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````