Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Some considerations

The functions we want, are basically CRUD on:

OpenMRSdcm4chee
UsersUsers
PatientsPatients
OrdersWorklists/workitems
ObservationsStudies/Series/Images

The users would be: referring physician, modality/radiographer, and radiologist.

We need to define where the radiology module server would be to reduce implementation efforts. I mean:

  1. If we decide to put the module on OpenMRS, we would have a URL like /ws/rest/**/radiology/patients (service for an OpenMRS module)
  2. If we decide to run an independet server the URLs would be /patients
FunctionMethodPath example
CreatePOST/patients
ReadGET/patients/:search
UpdatePUT/patients/:id
DeleteDELETE/patients/:id

I was thinking that :search could be a string like:

  1. 1, in this case the API would fetch patient with id 1

 

  • No labels