Care Plan
Read patient care plans and associated goals.
Endpoints
GET Get Care Plan by Patient ID
Path Parameters
Parameter
Type
Required
Description
Example Request
GET /acme-health/live/patients/a1b2c3d4/care-plan
Authorization: Bearer <token>Example Response 200 OK
200 OK{
"id": "careplan-uuid",
"patientId": "a1b2c3d4",
"status": "ACTIVE",
"startDate": "2026-01-15",
"goals": [
{
"id": "goal-uuid-1",
"title": "Reduce A1C to below 7%",
"status": "IN_PROGRESS",
"targetDate": "2026-06-30",
"progressNotes": "Patient reports diet improvements."
},
{
"id": "goal-uuid-2",
"title": "Daily blood pressure monitoring",
"status": "COMPLETED",
"targetDate": "2026-03-01"
}
],
"updatedAt": "2026-03-15T08:00:00Z"
}Goals
GET Get All Goals
GET Get Goal by ID
POST Create Goal
PATCH Update Goal
DELETE Delete Goal
Overview
GET Get Care Plan Overview
Last updated
Was this helpful?