Skip to content

Commit

Permalink
Added $match empi operation (#126)
Browse files Browse the repository at this point in the history
Co-authored-by: Ganesh Kuber <[email protected]>
  • Loading branch information
v-gkuber and Ganesh Kuber authored Oct 18, 2023
1 parent 4c8944f commit 877c0d7
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21900,6 +21900,44 @@
"response": []
}
]
},
{
"name": "FHIR & EMPI Integration",
"item": [
{
"name": "Match Patient",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Parameters\",\r\n \"parameter\": [\r\n {\r\n \"name\": \"resource\",\r\n \"resource\": {\r\n \"resourceType\": \"Patient\",\r\n \"identifier\":[\r\n {\r\n \"system\": \"urn:oid:2.16.840.1.113883.4.927\",\r\n \"value\": \"9A13A627AA01\"\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"name\": [\r\n {\r\n \"family\": \"Smith\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"count\",\r\n \"valueInteger\": \"10\"\r\n },\r\n {\r\n \"name\": \"onlyCertainMatches\",\r\n \"valueBoolean\": \"true\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{empiconnectorurl}}/api/Match?code={{apikey}}",
"host": [
"{{empiconnectorurl}}"
],
"path": [
"api",
"Match"
],
"query": [
{
"key": "code",
"value": "{{apikey}}"
}
]
}
},
"response": []
}
]
}
],
"event": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,18 @@
"value": "",
"type": "default",
"enabled": true
},
{
"key": "empiconnectorurl",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "apikey",
"value": "",
"type": "default",
"enabled": true
}
],
"_postman_variable_scope": "environment",
Expand Down

0 comments on commit 877c0d7

Please sign in to comment.