NOTREGISTERED
/VendorService
 
 

FHIR Patient API Resource

Patient

URL

https://fp.medicaid.utah.gov/ProviderClient/Patient

Sample Request

ACCEPT: application/json
AUTHORIZATION: Bearer {ACCESS_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"
		}
	}
}