Skip to first unread message

Deepesh Kumar

unread,
Nov 28, 2019, 1:51:59 AM11/28/19
to cerner-fhir...@googlegroups.com
Does anyone know the API's to fetch Providers (clinicians) data?

Kerolos Bisheer

unread,
Nov 28, 2019, 7:26:31 AM11/28/19
to cerner-fhir...@googlegroups.com
And locations a well.

Thanks,
Best regards,
Kerolos Bisheer

On Thu, 28 Nov 2019, 08:52 Deepesh Kumar, <deepes...@gmail.com> wrote:
Does anyone know the API's to fetch Providers (clinitians) data?

--
You received this message because you are subscribed to the Google Groups "Cerner FHIR Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cerner-fhir-devel...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cerner-fhir-developers/7ec111a6-cbf1-4a8c-a3b2-39ee5fccff5a%40googlegroups.com.

Avery Allen (Cerner)

unread,
Dec 2, 2019, 9:16:49 AM12/2/19
to Cerner FHIR Developers
Hi,

You can fetch provider data through the Practitioner resource.


Avery

Avery Allen (Cerner)

unread,
Dec 2, 2019, 9:18:32 AM12/2/19
to Cerner FHIR Developers
Hi,

Locations would be retrieved through the Location Resource, but we unfortunately do not support it.

For the supported resources, please see fhir.cerner.com or the server's Metadata endpoint.

Thanks,

Avery

hixny common

unread,
Dec 4, 2019, 10:47:44 AM12/4/19
to Cerner FHIR Developers
Hi Avery, Is there an example out there that shows how the smart client can access the 'practitioner' resources ?

For example, for the patient the example app provides some API like

var patient = smart.patient;
var pt = patient.read();
if (smart.hasOwnProperty('patient')) {
 $.when(pt).fail(onError);
 $.when(pt).done(function(patient) {
  // do whatever with the patient resources
});

Is there something similar for practitioner ?
something like below ? or what is the equivalent ?

if (smart.hasOwnProperty('practitioner')) {
var prac = smart.practitioner;
var pr = prac.read();

$.when(pr).fail(onError);

$.when(pr).done(function(practitioner) {
alert("Practitioner Bundle read = " + JSON.stringify(practitioner));
});

}
if (smart.hasOwnProperty('practitioner')) {
Reply all
Reply to author
Forward
0 new messages