NOTREGISTERED
/VendorService
 
 
Documentation

Explore and Develop with FHIR


Practitioner
  • This profile builds upon the US Core Practitioner profile. It is used to convey information about the practitioner who provided to the patient services described on the claim.
  • Commonly available via

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


Sample Request
ACCEPT: application/json
AUTHORIZATION: Bearer {ACESS_TOKEN}

Sample request
ACCESS_TOKEN=utahid-link-access-token

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

Sample response
{
	"resourceType": "Practitioner",
	"id": "9374662666",
	"language": "English",
	"identifier": [
		{
			"use": "official",
			"type": {
				"coding": [
					{
						"system": "https://npiregistry.cms.hhs.gov/",
						"code": "9374662666",
						"display": "NPI",
						"userSelected": false
					}
				]
			},
			"system": "9374662666",
			"value": "9374662666",
			"period": {
				"start": "2012-09-10T00:00:00-06:00",
				"end": "2999-12-31T00:00:00-07:00"
			}
		},
		{
			"use": "official",
			"type": {
				"coding": [
					{
						"system": "State System",
						"code": "1012413",
						"display": "PRISM_PROV_SID",
						"userSelected": false
					}
				]
			},
			"system": "1012413",
			"value": "1012413",
			"period": {
				"start": "2012-09-10T00:00:00-06:00",
				"end": "2999-12-31T00:00:00-07:00"
			}
		}
	],
	"active": true,
	"name": [
		{
			"use": "official",
			"text": "Smith DAVID",
			"family": "BROWN",
			"given": [
				"SMITH"
			]
		}
	],
	"address": [
		{
			"extension": [
				{
					"url": "longitude",
					"valueDecimal": -941.881
				},
				{
					"url": "latitude",
					"valueDecimal": 84.443
				}
			],
			"use": "home",
			"type": "physical",
			"text": "48475 W S STE 008 SALT LAKE CITY Utah 84111 -1727",
			"line": [
				"48475 W S STE 008"
			],
			"city": "SALT LAKE CITY",
			"state": "Utah",
			"postalCode": "84111-1727",
			"country": "UNITED STATES"
		},
		{
			"extension": [
				{
					"url": "longitude",
					"valueDecimal": -941.881
				},
				{
					"url": "latitude",
					"valueDecimal": 84.443
				}
			],
			"use": "work",
			"type": "physical",
			"text": "48475 W S STE 008 SALT LAKE CITY Utah 84111 -1727",
			"line": [
				"48475 W S STE 008"
			],
			"city": "SALT LAKE CITY",
			"state": "Utah",
			"postalCode": "84111-1727",
			"country": "UNITED STATES"
		}
	]
}