Skip to content

Instantly share code, notes, and snippets.

@triton11
Created February 20, 2016 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save triton11/2f08375e702a80c7e8f6 to your computer and use it in GitHub Desktop.
Save triton11/2f08375e702a80c7e8f6 to your computer and use it in GitHub Desktop.
epic test
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.12.0.js"></script>
<title>Epic Test One</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h2>Welcome!</h2>
<h3> This is a test </h3>
<script type="text/javascript">
var baseUrl = "https://open-ic.epic.com/FHIR/api/FHIR/DSTU2/"
var patientSearchString = "/Patient?given=Jason&family=Argonaut"
$.getJSON(baseUrl + patientSearchString, function(data,error) {
console.log(data);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment