Versions Compared

Key

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

...

http://localhost:8000/api_fhir_R4r4/ActivityDefinition

Supported HTTP operation:

  • POST - the operation currently not supported
    Used to create a new medical service. 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);

    • ActivityDefinition resource created (includes the generated IDs);

  • GET - by default return list of all available ActivityDefinition (medical services).
    To fetch information about a specific object you should add the Service UUID to URL for instance:
    http://localhost:8000/api_fhir_R4r4/ActivityDefinition/{ServiceUUID}
    To search for an ActivityDefinition (service) resource based on ServiceCode, use query variable ‘identifier’ with the ServiceCode code value:
    http://localhost:8000/api_fhir_R4r4/ActivityDefinition?identifier={ServiceCode}

  • PUT - the operation currently not supported
    Used to update an ActivityDefinition (medical service).

  • DELETE - the operation currently not supported
    Used to delete an ActivityDefinition (medical service).

...