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

# Update Dose Management Status

> Update only a dose's staff-set management status.

Lightweight vs. update_dose: no sign-off clearing and no inventory
reconciliation, so it is safe to change even for DoseSpot-prescribed doses.



## OpenAPI

````yaml patch /user/patient/doses/{dose_id}/management-status
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /user/patient/doses/{dose_id}/management-status:
    patch:
      tags:
        - Patient Doses
      summary: Update Dose Management Status
      description: >-
        Update only a dose's staff-set management status.


        Lightweight vs. update_dose: no sign-off clearing and no inventory

        reconciliation, so it is safe to change even for DoseSpot-prescribed
        doses.
      operationId: >-
        update_dose_management_status_user_patient_doses__dose_id__management_status_patch
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
        - name: dose_id
          in: path
          required: true
          schema:
            type: string
            title: Dose Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DoseManagementStatusUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PatientDoseListState'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DoseManagementStatusUpdate:
      properties:
        managementStatus:
          anyOf:
            - $ref: '#/components/schemas/DoseManagementStatus'
            - type: 'null'
      type: object
      title: DoseManagementStatusUpdate
      description: Schema for updating only a dose's staff-set management status.
    PatientDoseListState:
      properties:
        patientId:
          type: string
          title: Patientid
        medications:
          items:
            $ref: '#/components/schemas/DoseSummary'
          type: array
          title: Medications
      type: object
      required:
        - patientId
        - medications
      title: PatientDoseListState
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DoseManagementStatus:
      type: string
      enum:
        - recommended
        - active
        - discontinued
      title: DoseManagementStatus
      description: Clinical management status of a dose, set manually by staff.
    DoseSummary:
      properties:
        id:
          type: string
          title: Id
        patientId:
          type: string
          title: Patientid
        providerId:
          anyOf:
            - type: string
            - type: 'null'
          title: Providerid
        doseDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Dosedate
        sideEffects:
          anyOf:
            - type: string
            - type: 'null'
          title: Sideeffects
        administrationLocation:
          anyOf:
            - type: string
            - type: 'null'
          title: Administrationlocation
        frequency:
          anyOf:
            - type: string
            - type: 'null'
          title: Frequency
        comment:
          anyOf:
            - type: string
            - type: 'null'
          title: Comment
        noteId:
          anyOf:
            - type: string
            - type: 'null'
          title: Noteid
        locationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Locationid
        signedOffProviderId:
          anyOf:
            - type: string
            - type: 'null'
          title: Signedoffproviderid
        signedOffDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Signedoffdate
        dosespotMedicationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Dosespotmedicationid
        status:
          anyOf:
            - $ref: '#/components/schemas/DoseStatus'
            - type: 'null'
        managementStatus:
          anyOf:
            - $ref: '#/components/schemas/DoseManagementStatus'
            - type: 'null'
        labelData:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Labeldata
        labelPrintedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Labelprinteddate
        labelPrintedProviderId:
          anyOf:
            - type: string
            - type: 'null'
          title: Labelprintedproviderid
        createdDate:
          type: string
          format: date-time
          title: Createddate
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
        isArchived:
          type: boolean
          title: Isarchived
          default: false
        provider:
          anyOf:
            - $ref: '#/components/schemas/UserTiny'
            - type: 'null'
        signedOffProvider:
          anyOf:
            - $ref: '#/components/schemas/UserTiny'
            - type: 'null'
        components:
          items:
            $ref: '#/components/schemas/DoseComponentSummary'
          type: array
          title: Components
      type: object
      required:
        - id
        - patientId
        - createdDate
      title: DoseSummary
      description: Schema for returning medication administration events.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    DoseStatus:
      type: string
      enum:
        - active
        - inactive
        - deleted
      title: DoseStatus
    UserTiny:
      properties:
        id:
          type: string
          title: Id
          description: The unique identifier for the user.
        firstName:
          anyOf:
            - type: string
            - type: 'null'
          title: Firstname
          description: The user's first name.
        lastName:
          anyOf:
            - type: string
            - type: 'null'
          title: Lastname
          description: The user's last name.
        phoneNumber:
          anyOf:
            - type: string
            - type: 'null'
          title: Phonenumber
          description: The user's phone number.
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: The user's email address.
        type:
          $ref: '#/components/schemas/UserType'
          description: The type of user.
        locationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Locationid
          description: The location of the user.
      type: object
      required:
        - id
        - type
      title: UserTiny
    DoseComponentSummary:
      properties:
        id:
          type: string
          title: Id
        doseId:
          type: string
          title: Doseid
        medicationId:
          type: string
          title: Medicationid
        name:
          type: string
          title: Name
        position:
          type: integer
          title: Position
          default: 0
        unit:
          anyOf:
            - $ref: '#/components/schemas/Unit'
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
          title: Amount
        quantity:
          type: number
          title: Quantity
          default: 1
        lotNumber:
          anyOf:
            - type: string
            - type: 'null'
          title: Lotnumber
        stockId:
          anyOf:
            - type: string
            - type: 'null'
          title: Stockid
        chargeItemId:
          anyOf:
            - type: string
            - type: 'null'
          title: Chargeitemid
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
        isArchived:
          type: boolean
          title: Isarchived
          default: false
      type: object
      required:
        - id
        - doseId
        - medicationId
        - name
      title: DoseComponentSummary
    UserType:
      type: string
      enum:
        - PROVIDER
        - PATIENT
        - ASSISTANT
      title: UserType
    Unit:
      type: string
      enum:
        - AMPOULES
        - APPLICATORS
        - BOTTLES
        - BOXES
        - CAPSULES
        - CUPS
        - DOSES
        - G_PER_ML
        - GRAMS
        - IU
        - IU_PER_ML
        - OUNCES
        - FLUID_OUNCES
        - KG
        - KITS
        - LITERS
        - MCG
        - MG
        - MG_PER_ML
        - ML
        - MMOL
        - MICROGRAM_PER_ML
        - PACKS
        - PAIRS
        - PATCHES
        - PERCENTAGE
        - PIECES
        - POUCHES
        - ROLLS
        - SACHETS
        - SHEETS
        - SPRAYS
        - STRIPS
        - SYRINGES
        - TABLETS
        - TABLETS_PER_DAY
        - TESTS
        - TROCHES
        - TUBES
        - UNITS
        - VIALS
        - TREATMENTS
        - SESSIONS
        - PULSES
        - JOULES
        - CENTIMETERS
        - THREAD_COUNT
        - INJECTIONS
        - WRINKLE_UNITS
        - POUNDS
        - FEET
        - INCHES
      title: Unit

````