I am integrating a FHIR API into a
vb.net application. Based on inputs provided by the program I want to be able to pull up specific encounters so that the user can verify data has been entered correctly for the patient, and make changes if required. As we utilize LDAP, I want to use windows authentication for the connection if possible. For testing of functionality I was attempting to connect to the Sandbox, but ran into issues with entering of data for the current patient. This is the code I have so far:
fhirClient.UseFormatParam = True
fhirClient.PreferredFormat = ResourceFormat.Json
Dim currentPatient = fhirClient.Read(Of Patient)("Patient/1")
When I try to set a value such as currentPatient.Name I cannot input a string value, as it says Name is a list(of HumanName).
Also while this may not be the right group, I am wanting to pull up the matching CPDI image of the insurance card so the billing user can see the Cerner data and insurance card image side by side.