-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc: describe RESTful transactions and endpoints
- Loading branch information
Showing
8 changed files
with
413 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
Here are the endpoints exposed by the MobileAccessGateway. | ||
|
||
| Transaction | URL | | ||
| ----------- | ----------------------------------------------------- | | ||
| ITI-65 | _instance_/fhir/ | | ||
| ITI-66 | _instance_/fhir/List | | ||
| ITI-67 | _instance_/fhir/DocumentReference | | ||
| ITI-68 | _instance_/fhir/camel/xdsretrieve | | ||
| ITI-71 | | | ||
| ITI-78 | _instance_/fhir/Patient | | ||
| ITI-83 | _instance_/fhir/Patient/$ihe-pix | | ||
| ITI-93 | | | ||
| ITI-104 | _instance_/fhir/Patient | | ||
| PHARM-5 | _instance_/fhir/DocumentReference/$_{operation-name}_ | | ||
| Transaction | URL | | ||
| -------------------- | ----------------------------------------------------- | | ||
| ITI-65 | _instance_/fhir/ | | ||
| ITI-66 | _instance_/fhir/List | | ||
| ITI-67 | _instance_/fhir/DocumentReference | | ||
| ITI-68 | _instance_/camel/xdsretrieve | | ||
| ITI-71 | _instance_/camel/authorize | | ||
| ITI-78 | _instance_/fhir/Patient | | ||
| ITI-83 | _instance_/fhir/Patient/$ihe-pix | | ||
| ITI-93 | | | ||
| ITI-104 | _instance_/fhir/Patient | | ||
| PHARM-5 | _instance_/fhir/DocumentReference/$_{operation-name}_ | | ||
| Get X-User Assertion | _instance_/camel/assertion | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
POST /assertion HTTP/1.1 | ||
Scope: person_id=761337610445502987^^^&2.16.756.5.30.1.127.3.10.3&ISO purpose_of_use=urn:oid:2.16.756.5.30.1.127.3.10.5|NORM subject_role=urn:oid:2.16.756.5.30.1.127.3.10.6|HCP | ||
Content-Type: application/xml | ||
|
||
<saml2:Assertion xmlns:saml2="urn:oasis:names:tc:SAML:2.0:assertion" Version="2.0"> | ||
<!-- Content of the IDP assertion… --> | ||
</saml2:Assertion> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
PUT /Patient?identifier=urn:oid:2.16.756.5.30.1.196.3.2.1|MAGMED001 HTTP/1.1 | ||
Content-Type: application/fhir+json | ||
|
||
{ | ||
"active": true, | ||
"birthDate": "1987-10-08", | ||
"gender": "male", | ||
"id": "2.16.756.5.30.1.127.3.10.3-761337611735842172", | ||
"identifier": [ | ||
{ | ||
"system": "urn:oid:2.16.756.5.30.1.196.3.2.1", | ||
"value": "MAGMED001" | ||
}, | ||
{ | ||
"system": "urn:oid:2.999.42", | ||
"value": "new-identifier-value" | ||
} | ||
], | ||
"name": [ | ||
{ | ||
"family": "NEFF-WINGEIER", | ||
"given": [ | ||
"Trong Sang" | ||
] | ||
} | ||
], | ||
"resourceType": "Patient" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
POST /ARR/fhir/AuditEvent HTTP/1.1 | ||
Content-Type: application/fhir+xml | ||
|
||
<Bundle> | ||
<entry> | ||
... | ||
<request> | ||
<method value="POST"/> | ||
</request> | ||
</entry> | ||
</Bundle> |
Oops, something went wrong.