NOTREGISTERED
/VendorService
 
 
Documentation

Explore and Develop with FHIR


RelatedPerson
  • This profile is used to convey basic demographic information about a person related to the claim.
  • Commonly available via

URL
https://fp.medicaid.utah.gov/ProviderClient/RelatedPerson


Sample Request
ACCEPT: application/json
AUTHORIZATION: Bearer {ACESS_TOKEN}
Sample request
			
ACCESS_TOKEN=utahid-link-access-token

curl "https://api.flexpa.com/fhir/Patient/$PATIENT_ID" \
			-H "Authorization: Bearer $ACCESS_TOKEN"
  				
			

Sample response
{
	"fullUrl": "http://localhost:9090/ProviderDirectoryServices/Patient/8544556667",
	"resource": {
		"resourceType": "Patient",
		"id": "8544556667",
		"extension": [
			{
				"url": "RACE",
				"valueCode": "Other/Unknown"
			},
			{
				"url": "ETHNICITY",
				"valueCode": "Non Hispanic or Latino"
			},
			{
				"url": "BirthSex",
				"valueCode": "F"
			}
		],
		"identifier": [
			{
				"type": {
					"coding": [
						{
							"system": "State System",
							"code": "8544556667",
							"display": "Client Medicaid ID",
							"userSelected": false
						}
					]
				},
				"system": "8544556667",
				"value": "8544556667"
			}
		],
		"name": [
			{
				"use": "official",
				"text": "Doe S",
				"family": "Na",
				"given": [
					"D Na"
				]
			}
		],
		"telecom": [
			{
				"value": "8019417384",
				"rank": 1
			}
		],
		"gender": "female",
		"address": [
			{
				"extension": [
					{
						"url": "longitude",
						"valueDecimal": 0.0
					},
					{
						"url": "latitude",
						"valueDecimal": 0.0
					}
				],
				"use": "work",
				"type": "physical",
				"text": "009 S Smith RD SALT LAKE CITY UT 84123",
				"line": [
					"009 S Smith RD",
					"STE 10"
				],
				"city": "SALT LAKE CITY",
				"state": "UT",
				"postalCode": "84123"
			}
		]
	}
}