Get a practitioner by ID

get

/Practitioner/{id}

Retrieves a practitioner by the associated ID.

Authorization Types

This operation supports the following authorization types:

  • Patient
  • Provider
  • System

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/json+fhir)
{
    "resourceType":"Practitioner",
    "id":"4122622",
    "meta":{
        "versionId":"18",
        "lastUpdated":"2016-04-28T15:01:59.000Z"
    },
    "text":{
        "status":"generated",
        "div":"<div><p><b>Practitioner</b></p><p><b>Name</b>: Cerner Test, Physician - Hospitalist Cerner</p><p><b>Identifiers</b>: EXTERNALID: CERNERPHYSHOSP, NPI: 1111111111, MESSAGING: 4122622</p><p><b>Status</b>: Active</p></div>"
    },
    "identifier":[
        {
            "use":"usual",
            "type":{
                "text":"External Identifier"
            },
            "value":"CERNERPHYSHOSP",
            "period":{
                "start":"2016-04-28T15:01:59.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "text":"National Provider Identifier"
            },
            "value":"1111111111",
            "period":{
                "start":"2015-10-14T05:00:00.000Z"
            }
        },
        {
            "use":"usual",
            "type":{
                "text":"Messaging"
            },
            "value":"4122622",
            "period":{
                "start":"2015-08-18T05:00:00.000Z"
            }
        }
    ],
    "active":true,
    "name":{
        "use":"usual",
        "text":"Cerner Test, Physician - Hospitalist Cerner",
        "family":[
            "Cerner Test"
        ],
        "given":[
            "Physician - Hospitalist",
            "Cerner"
        ],
        "period":{
            "start":"2016-04-28T15:01:59.000Z"
        }
    }
}

Default Response

An OperationOutcome describing any error that occurred.

Headers
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : issue
Type: array
Minimum Number of Items: 1
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