Overview

Practitioner is a person who is directly or indirectly involved in the provisioning of healthcare. Practitioner covers all individuals who are engaged in the healthcare process and healthcare-related services as part of their formal responsibilities and this Resource is used for attribution of activities and responsibilities to these individuals.

Example Usage Scenarios:

The following are example usage scenarios for the this profile:

  • Query for an practitioner by name or NPI
  • Reference from other Resources

Each Practitioner has next elements:

  • an identifier which must support an NPI if available.
  • a name

Each Practitioner supports next elements:

  • Contact information
  • An address

Must support elements, mandatory and optional search parameters

Practitioner must support these elements:

  • Slices for identifier
    • identifier: all slices
      • system
      • value
    • identifier: NPI
  • active
  • name
    • family
  • telecom
    • system
    • value
  • address
    • line
    • city
    • state
    • postalCode
    • country

Practitioner response will be provided in JSON (refers to Capability Statement) format as per FHIR standard R4 version.

The following search parameters and search parameter combinations SHALL be supported (mandatory):

The syntax used to describe the interactions is described here.

SHALL support searching for a practitioner by a string match of any part of name using the name search parameter:
GET [base url]/Practitioner?name=[string]

SHALL support searching a practitioner by an identifier such as an NPI using the identifier search parameter:
GET [base url]/Practitioner?identifier={system|}[code]

The following search parameters and search parameter combinations SHOULD be supported (optional):
SHOULD support searching using the _id search parameter:

GET [base]/Practitioner?_id={system|}[code]

The response to any search operation is always a list of resources in a Bundle or an Operation Outcome.

Practitioner By Name

Search for Practitioner by name.

METHOD GET

GET [base url]/Practitioner?name=[string]

PARAMS
[base url] - FHIR base url
[string] - Practitioner's name

HEADERS

The Authorization token SHALL be obtained during Authentication and Authorization process. Go to Authentication and Authorization for further details.

HeaderTypeRequired/OptionalValue
Authorizationstringrequired'Bearer'

RESPONSES

CodeDescriptionComment
200OKThe request was processed successfully
400Bad requestInvalid request parameters or FHIR operation outcome resource returned
401UnauthorizedThis code indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource
404no Route matched with those valuesThe request was able to communicate with a given server, but the server could not find what was requested
500Internal Server ErrorThe server has encountered a situation it doesn't know how to handle

EXAMPLE:

curl --location --request GET 'https://sandbox.fhir.elationemr.com/fhir/Practitioner?name=Smith' \
--header 'Authorization: Bearer fe1cd986-1ac7-4c26-b8b3-d632a48408fd'

Practitioner By Identifier

Get Practitioner by identifier.

METHOD GET

GET [base url]/Practitioner?identifier={system|}[code]

PARAMS

[base url] - FHIR base url
{system|} - The system for the identifier, e.g. http://hl7.org/fhir/sid/us-npi
{code} - code or id in the system, e.g. 97860456

HEADERS

The Authorization token SHALL be obtained during Authentication and Authorization process. Authentication and Authorization for further details.

HeaderTypeRequired/OptionalValue
Authorizationstringrequired'Bearer'

RESPONSES

CodeDescriptionComment
200OKThe request was processed successfully
400Bad requestInvalid request parameters or FHIR operation outcome resource returned
401UnauthorizedThis code indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource
404no Route matched with those valuesThe request was able to communicate with a given server, but the server could not find what was requested
500Internal Server ErrorThe server has encountered a situation it doesn't know how to handle

EXAMPLE:

curl --location --request GET 'https://sandbox.fhir.elationemr.com/fhir/Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|97860456' \
--header 'Authorization: Bearer fe1cd986-1ac7-4c26-b8b3-d632a48408fd'

Practitioner By Id

Get Practitioner by internal resource id.

METHOD GET

GET [base url]/Practitioner/[id]

or

GET [base url]/Practitioner_id=[id]

PARAMS

[base url] - FHIR base url
[id] - Practitioner's id

HEADERS

The Authorization token SHALL be obtained during Authentication and Authorization process. Authentication and Authorization for further details.

HeaderTypeRequired/OptionalValue
Authorizationstringrequired'Bearer'

RESPONSES

CodeDescriptionComment
200OKThe request was processed successfully
400Bad requestInvalid request parameters or FHIR operation outcome resource returned
401UnauthorizedThis code indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource
404no Route matched with those valuesThe request was able to communicate with a given server, but the server could not find what was requested
500Internal Server ErrorThe server has encountered a situation it doesn't know how to handle

EXAMPLE:

curl --location --request GET 'https://sandbox.fhir.elationemr.com/fhir/Practitioner/97860456' \
--header 'Authorization: Bearer fe1cd986-1ac7-4c26-b8b3-d632a48408fd'