updateMedicationRequest
Modify the status of an existing medication request using its unique ID. Supports updates to status fields like active, on-hold, cancelled, completed, and more.
Instructions
Updates an existing medication request. Requires the medication request ID and fields to update.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
medicationRequestId | Yes | The unique ID of the medication request to update. | |
status | No | New status for the medication request. |
Input Schema (JSON Schema)
{
"properties": {
"medicationRequestId": {
"description": "The unique ID of the medication request to update.",
"type": "string"
},
"status": {
"description": "New status for the medication request.",
"enum": [
"active",
"on-hold",
"cancelled",
"completed",
"entered-in-error",
"stopped",
"draft",
"unknown"
],
"type": "string"
}
},
"required": [
"medicationRequestId"
],
"type": "object"
}