Hello,
Would someone explain me the difference between CRUD and REST API operations in the workflow and architecture of FHIR?
I will appreciate if someone guides me.
Hello,
Would someone explain me the difference between CRUD and REST API operations in the workflow and architecture of FHIR?
I will appreciate if someone guides me.
REST involves leveraging the http protocol to perform CRUD operations - C=POST, R=GET, U=PUT, D=DELETE. FHIR also introduces some specific variations:
Mahy,
One other tiny point about ReST itself is that you are not allowed to conceive any CRUD operation you undertake in ReST as requiring state. Your operation, be it to Create a new resource (or multiple resources), Read back a resource, Update a resource, Delete a resource, etc. is not expected to (and must not) involve a “mode” in which you exchange (HTTP messages) assuming some interconnecting state (between the different messages or a group of messages, etc.).