getObservationById
Retrieve specific observation data from a Medplum FHIR server using its unique ID for precise healthcare information access.
Instructions
Retrieves an observation by its unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
observationId | Yes | The unique ID of the observation to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"observationId": {
"description": "The unique ID of the observation to retrieve.",
"type": "string"
}
},
"required": [
"observationId"
],
"type": "object"
}