Technical Functions Flashcards
1
Q
FHIR Interactions
A
Create Read Update Delete Search History Operation Transaction
2
Q
Create
A
POST https://example.com/path/{resourceType}
3
Q
Read
A
GET https://example.com/path/{resourceType}/{id}
4
Q
Update
A
PUSH https://example.com/path/{resourceType}/{id}
5
Q
Delete
A
DELETE https://example.com/path/{resourceType}/{id}
6
Q
Search
A
GET https://example.com/path/{resourceType}?{params}
7
Q
History
A
GET https://example.com/path/{resourceType}/{id}/history
8
Q
Operation
A
GET https://example.com/path/{resourceType}/{id}/${opsname}
9
Q
Transaction
A
POST https://example.com/path/
10
Q
RESTful Commands
A
POST
GET
PUSH
DELETE