getConditionById
Retrieve a specific condition resource using its unique ID within the Medplum MCP Server. Simplifies access to healthcare data for precise queries and management.
Instructions
Retrieves a condition resource by its unique ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conditionId | Yes | The unique ID of the condition to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"conditionId": {
"description": "The unique ID of the condition to retrieve.",
"type": "string"
}
},
"required": [
"conditionId"
],
"type": "object"
}