FHIR
Read a specified FHIR resource.
This endpoint is not included by default. If you require access, please contact support@particlehealth.com.
get/R4/{resource_type}/{resource_id}
Path parameters
resource_typestring required
Resource Type
resource_idstring required
Resource ID
Response
OK
Example response
{
"address": [
{
"city": "Brooklyn",
"line": [
"999 Dev Drive"
],
"postalCode": "11111",
"state": "New York"
}
],
"birthDate": "01-23-1900",
"gender": "FEMALE",
"id": "d80538f5-203a-4a1e-9b41-2919e174f19b",
"identifier": [
{
"type": {
"text": "SSN"
},
"value": "123-45-6789"
}
],
"name": [
{
"family": "Quark",
"given": [
"Kam"
]
}
],
"resourceType": "Patient",
"telecom": [
{
"system": "PHONE",
"value": "123-456-7890"
}
]
}