Skip to content

Commit

Permalink
Merge pull request #2062 from patryllus/feat/FHIREndpointCR
Browse files Browse the repository at this point in the history
Updated HIE CR endpoint to pull from THE FHIR endpoint and not custom…
  • Loading branch information
njorocs authored Nov 22, 2024
2 parents d193d99 + 1a7e528 commit d9f4c62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3424,7 +3424,7 @@ public static String getCrStatus(String identifier, String identifierType ) thro
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url(baseURL + "?"+ identifierType + "=" + identifier)
.url(baseURL + "?identifierType=" + identifierType + "&identifierNumber=" + identifier)
.addHeader("Referer", "")
.addHeader("Authorization", "Bearer " + token)
.build();
Expand Down

0 comments on commit d9f4c62

Please sign in to comment.