Get a practitioner by ID

get

/Practitioner/{id}

Retrieves a practitioner by the associated ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/fhir+json)
{
    "resourceType":"Practitioner",
    "id":"109413936",
    "meta":{
        "versionId":"0",
        "lastUpdated":"2019-03-07T20:40:34.000Z"
    },
    "text":{
        "status":"generated",
        "div":"<div xmlns='http://www.w3.org/1999/xhtml'><p><b>Practitioner</b></p><p><b>Name</b>: Lombardi, Falco Shine</p><p><b>Identifiers</b>: DOCUPIN: F88788, DOCDEA: 887887887, SPI: 16611661, NPI: 6656656, PRSNLPRIMID: 12332122</p><p><b>Gender</b>: Male</p><p><b>Status</b>: Active</p></div>"
    },
    "extension":[
        {
            "valueBoolean":true,
            "url":"https://fhir-ehr.cerner.com/r4/StructureDefinition/is-physician"
        }
    ],
    "identifier":[
        {
            "use":"usual",
            "type":{
                "coding":[
                    {
                        "system":"http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code":"PRN",
                        "display":"Provider number"
                    }
                ],
                "text":"DOCUPIN"
            },
            "_system":{
                "extension":[
                    {
                        "url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason",
                        "valueCode":"unknown"
                    }
                ]
            },
            "value":"F88788",
            "period":{
                "start":"2019-03-07T20:40:35.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "coding":[
                    {
                        "system":"http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code":"DEA",
                        "display":"Drug Enforcement Administration registration number"
                    }
                ],
                "text":"DOCDEA"
            },
            "system":"urn:oid:2.16.840.1.113883.4.814",
            "value":"887887887",
            "period":{
                "start":"2019-03-07T20:40:35.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "coding":[
                    {
                        "system":"http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code":"PRN",
                        "display":"Provider number"
                    }
                ],
                "text":"SureScripts Prescriber Index"
            },
            "system":"urn:oid:2.16.840.1.113883.3.2054",
            "value":"16611661",
            "period":{
                "start":"2019-04-12T18:24:23.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "coding":[
                    {
                        "system":"http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code":"NPI",
                        "display":"National provider identifier"
                    }
                ],
                "text":"National Provider Identifier"
            },
            "system":"http://hl7.org/fhir/sid/us-npi",
            "value":"6656656",
            "period":{
                "start":"2019-03-07T20:40:35.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "text":"Personnel Primary Identifier"
            },
            "system":"urn:oid:1.2.243.58",
            "value":"12332122",
            "period":{
                "start":"2019-04-12T18:24:23.000Z"
            }
        }
    ],
    "active":true,
    "name":[
        {
            "use":"usual",
            "text":"Lombardi, Falco Shine",
            "family":"Lombardi",
            "given":[
                "Falco",
                "Shine"
            ],
            "prefix":[
                "Dr."
            ],
            "suffix":[
                "M.D."
            ],
            "period":{
                "start":"2019-03-07T20:40:35.000Z"
            }
        }
    ],
    "telecom":[
        {
            "system":"phone",
            "value":"7861231234",
            "use":"work"
        },
        {
            "system":"email",
            "value":"falco.lombardi@sfox.com",
            "use":"work"
        }
    ],
    "address":[
        {
            "use":"work",
            "text":"111 Corneria Dr.\\nTallahassee, FL 32304\\nUSA",
            "line":[
                "111 Corneria Dr."
            ],
            "city":"Tallahassee",
            "district":"Leon",
            "state":"FL",
            "postalCode":"32304",
            "country":"USA"
        }
    ],
    "gender":"male",
    "qualification":[
        {
            "code":{
                "coding":[
                    {
                        "system":"https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/29600",
                        "code":"677091",
                        "display":"MD",
                        "userSelected":true
                    }
                ],
                "text":"MD"
            },
            "period":{
                "start":"2014-07-09T06:00:00.000Z"
            }
        },
        {
            "code":{
                "coding":[
                    {
                        "system":"https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/29600",
                        "code":"677079",
                        "display":"PhD",
                        "userSelected":true
                    }
                ],
                "text":"PhD"
            },
            "period":{
                "start":"2014-07-09T06:00:00.000Z"
            }
        }
    ]
}

Default Response

An OperationOutcome describing any error that occurred.

Headers
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : issue
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : details
Type: object
Show Source
Nested Schema : location
Type: array
Show Source
Nested Schema : coding
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top