post https://fhir-api.zapehr.com/r4b/CarePlan
CarePlan on the FHIR specification website.
Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions.
The body should be a valid FHIR object for CarePlan.
Here is an example:
{
"resourceType": "CarePlan",
"id": "obesity-narrative",
"text": {
"status": "additional",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> Care plan to address obesity. Goal is a target weight of 160 to 180 lbs. Activities include diet and exercise.</p>\n </div>"
},
"status": "active",
"intent": "plan",
"subject": {
"reference": "Patient/example",
"display": "Peter James Chalmers"
}
}
You can reference the FHIR documentation to determine the format for CarePlan
.