Versions Compared

Key

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

...

http://localhost:8000/api_fhir_R4r4/Condition

Supported HTTP operation:

  • POST - the operation currently not supported
    Used to submit a condition. List of supported fields can be found in the table which shows the mapping between OpenIMIS and FHIR. The body as JSON representation.

    The response is:

    • OperationOutcome which notice about the failure (list of possible errors);

    • Condition which notice about the success (includes the generated IDs);

  • GET - by default return list of all available Conditions (diagnosis). To fetch information about a specific object you should add the Condition code to URL for instance:
    http://localhost:8000/api_fhir_R4r4/Condition/{ConditionCode}

  • PUT - the operation currently not supported
    Used to update a Condition/diagnosis.

  • DELETE - the operation currently not supported
    Used to delete a Condition/diagnosis.

...