- Getting Started
- Authentication & Authorization
- Developer Onboarding
- API Usage Guidelines
- US Core & USCDI Mapping
- APIs
- Allergies and Intolerances
- Assessment and Plan of Treatment
- Care Team Members
- Clinical Notes
- Goals
- Clinical Tests
- Diagnostic Imaging
- Encounter Information
- Group
- Health Concerns
- Implantable Devices
- Immunizations
- Laboratory
- Medications
- Patient Demographics
- Procedures
- Provenance
- Smoking Status
- Vital Signs
- Allergies and Intolerances
- Legal & Compliance
By Patient and Category
Developing
Sandbox
https://fhir-dev.edvak.com/fhir
Sandbox
https://fhir-dev.edvak.com/fhir
GET
https://fhir-dev.edvak.com/fhir
patient
and category
as query parameters.Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Query Params
patient
string
required
Example:
Patient/123
category
string
optional
Example:
http://hl7.org/fhir/us/core/CodeSystem/careplan-category | assess-plan
Responses
🟢200Success
application/json
Body
resourceType
string
required
id
string
required
meta
object
required
lastUpdated
string
required
type
string
required
total
integer
required
link
array [object {2}]
required
relation
string
optional
url
string
optional
entry
array [object {3}]
required
fullUrl
string
optional
resource
object
optional
search
object
optional
Example
{
"resourceType": "Bundle",
"id": "53d61e3b-e0b9-48c3-b36e-038d34919498",
"meta": {
"lastUpdated": "2025-05-13T01:57:12.954+00:00"
},
"type": "searchset",
"total": 1,
"link": [
{
"relation": "self",
"url": "https://fhir-dev.edvak.com/fhir/CarePlan?category=assess-plan&patient=Patient%2F213"
}
],
"entry": [
{
"fullUrl": "https://fhir-dev.edvak.com/fhir/CarePlan/297",
"resource": {
"resourceType": "CarePlan",
"id": "297",
"meta": {
"versionId": "1",
"lastUpdated": "2025-05-07T12:45:52.702+00:00",
"source": "#DGOvBmKsgmqX8QE2"
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">undefined</div>"
},
"status": "on-hold",
"intent": "plan",
"category": [
{
"coding": [
{
"system": "http://hl7.org/fhir/us/core/CodeSystem/careplan-category",
"code": "assess-plan",
"display": "Assessment and Plan of Treatment"
}
],
"text": "Assessment and Plan"
}
],
"subject": {
"reference": "Patient/213",
"display": "6819f929a3681264f4934bf9"
}
},
"search": {
"mode": "match"
}
}
]
}
Modified at 2025-05-13 01:57:41