We have migrated to an enhanced online openmrs rest api documentation. Please visitÂ
https://rest.openmrs.org/#openmrs-rest-api
...
url | description |
---|---|
GET /ws/rest/v1/form/{parentUuid}/resouceresource/{uuid} | Fetch by unique uuid |
GET /ws/rest/v1/form/{parentUuid}/resouceresource | Fetch all non-retired |
POST /ws/rest/v1/form/{parentUuid}/resouceresource | Create with properties in request |
POST /ws/rest/v1/form/{parentUuid}/resouceresource/{uuid} | Edit with given uuid, only modifying properties in request |
POST /ws/rest/v1/form/{parentUuid}/resouceresource/{uuid}/value | Edit the value associated with this file stored in clob_data_type_storage (Essentially upload a file using multipart/formdata Content-Type) |
DELETE /ws/rest/v1/form/{parentUuid}/resouceresource/{uuid}?!purge | Retire/Void this object |
DELETE /ws/rest/v1/form/{parentUuid}/resouceresource/{uuid}?purge | Delete this object from the database |
...