Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

docker-compose up --build

Test

...

Når EAS-servicen er startet lokalt, kan servicens operationer (jf. OperationDefinitions i EAS implementation guiden) tilgås på følgende URL'er:

http://localhost:8081/eas/fhir/Organization/$getListOfGpByPostalCode

http://localhost:8081/eas/fhir/Organization/$getReceivingOrganizationByGPId

http://localhost:8081/eas/fhir/Organization/$getReceivingOrganizationByPatientId

http://localhost:8081/eas/fhir/Organization/$getReceivingOrganizationBySORId

Eksemplerne fra implementation guiden kan benyttes som input, fx således:

curl -X POST 'http://localhost:8080/eas/fhir/Organization/$getReceivingOrganizationBySORId' \
  -H 'Content-Type: application/fhir+json' \
  -H 'Accept: application/fhir+json' \
  -d '{
    "resourceType" : "Parameters",
    "id" : "EX-GetReceivingOrganizationBySORId-Request",
    "parameter" : [
      { "name" : "sorId", "valueString" : "12345678" },
      { "name" : "messageType", "valueString" : "XDIS92" }
    ]
  }'

Release

TODO

Tilføjelse af Operation Definitions

...