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

# Retrieve Packaged Medication

> Retrieve a single packaged medication



## OpenAPI

````yaml get /api/2.0/packaged_medications/{id}/
openapi: 3.1.0
info:
  contact:
    name: Elation Health
    url: https://www.elationhealth.com/
  description: Elation Health API v2.0
  title: Reference Data API
  version: 2.0.0
servers:
  - description: Sandbox Server
    url: https://sandbox.elationemr.com
  - description: Production Server
    url: https://api.app.elationemr.com
security: []
paths:
  /api/2.0/packaged_medications/{id}/:
    get:
      tags:
        - Packaged Medication (Beta)
      summary: Retrieve Packaged Medication
      description: Retrieve a single packaged medication
      operationId: packaged_medications_retrieve
      parameters:
        - in: path
          name: id
          required: true
          schema:
            format: int64
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PackagedMedication'
          description: ''
      security:
        - oauth2: []
components:
  schemas:
    PackagedMedication:
      properties:
        created_date:
          format: date-time
          readOnly: true
          type:
            - string
            - 'null'
        deleted_date:
          format: date-time
          readOnly: true
          type:
            - string
            - 'null'
        din:
          description: Drug Identification Number.
          readOnly: true
          type:
            - string
            - 'null'
        gpi:
          description: Generic Product Identifier.
          readOnly: true
          type:
            - string
            - 'null'
        has_outer_packaged_drug:
          readOnly: true
          type:
            - boolean
            - 'null'
        hri:
          description: Health Related Item.
          readOnly: true
          type:
            - string
            - 'null'
        id:
          readOnly: true
          type: integer
        is_active:
          readOnly: true
          type: boolean
        is_clinic_pack:
          description: '`true` if the packaged medication is a clinic pack.'
          readOnly: true
          type:
            - boolean
            - 'null'
        is_repackaged:
          description: '`true` if the packaged medication is a repackaged medication.'
          readOnly: true
          type:
            - boolean
            - 'null'
        labeler_id:
          format: int64
          readOnly: true
          type: integer
        market_end_date:
          format: date-time
          type:
            - string
            - 'null'
        medispanppid:
          readOnly: true
          type:
            - string
            - 'null'
        multi_source:
          readOnly: true
          type:
            - string
            - 'null'
        name:
          readOnly: true
          type: string
        ndc:
          description: National Drug Code.
          readOnly: true
          type:
            - string
            - 'null'
        obsolete_date:
          format: date-time
          type:
            - string
            - 'null'
        packaging_name:
          readOnly: true
          type:
            - string
            - 'null'
        reference_medication_id:
          format: int64
          readOnly: true
          type: integer
        size_description:
          readOnly: true
          type:
            - string
            - 'null'
        upc:
          description: Universal Product Code.
          readOnly: true
          type:
            - string
            - 'null'
      type: object
  securitySchemes:
    oauth2:
      flows:
        clientCredentials:
          scopes:
            act_as_user: >-
              Impersonate a provider via X-On-Behalf-Of (combinable with apiv2
              or system scopes)
            apiv2: Full access to the API
            system/{resource_name}.read: Read access to a specific resource
            system/{resource_name}.write: Write access to a specific resource
          tokenUrl: /api/2.0/oauth2/token/
      type: oauth2

````