Documentation
Explore and Develop with FHIR
Patient
- This profile builds upon the US Core Patient profile. It is used to convey information about the patient who received the services described on the claim.
- Commonly available via
URL
https://fp.medicaid.utah.gov/ProviderClient/Patient
Sample
Request
ACCEPT: application/json
AUTHORIZATION: Bearer {ACESS_TOKEN}
Sample
request
ACCESS_TOKEN=utahid-link-access-token curl "https://fp.medicaid.utah.gov/ProviderClient/Patient/$PATIENT_ID" \ -H "Authorization: Bearer $ACCESS_TOKEN"
Sample
response
{
"fullUrl": "http://localhost:9090/ProviderDirectoryServices/Patient/0943904",
"resource": {
"resourceType": "Patient",
"id": "0943904",
"extension": [
{
"url": "RACE",
"valueCode": "Other/Unknown"
},
{
"url": "ETHNICITY",
"valueCode": "Unknown"
},
{
"url": "BirthSex",
"valueCode": "M"
}
],
"identifier": [
{
"type": {
"coding": [
{
"system": "http://hl7.org/fhir/v2/0203",
"code": "SS"
}
]
},
"system": "http://hl7.org/fhir/sid/us-ssn",
"value": "444222222"
}
],
"active": true,
"name": [
{
"use": "official",
"family": "Everywoman",
"given": [
"Eve"
]
}
],
"telecom": [
{
"system": "phone",
"value": "555-555-2003",
"use": "work"
}
],
"gender": "female",
"birthDate": "1973-05-31",
"address": [
{
"use": "home",
"line": [
"2222 Home Street"
]
}
],
"managingOrganization": {
"reference": "Organization/hl7"
}
}
}