getEpisodeOfCareById
Retrieve healthcare episode details using a unique ID to access and manage patient care data efficiently on Medplum MCP Server.
Instructions
Retrieves an episode of care by its unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
episodeOfCareId | Yes | The unique ID of the episode of care to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"episodeOfCareId": {
"description": "The unique ID of the episode of care to retrieve.",
"type": "string"
}
},
"required": [
"episodeOfCareId"
],
"type": "object"
}