For these exercises we can utilize the following servers:
There are several ways in creating a resource in a FHIR server
Consider the following sample Patient Resource
To upload the patient information to the server directly:
Go to the server
At the left side select the resource you want to create (Patient)
Select CRUD Operations on the tab
Go to the Create section
Paste the contents of the resource that you want to submit.
Press the Create button
Wait for the server's response
Run the following command in any UNIX terminal
curl -v -X POST --header "Content-Type: application/fhir+json" --data '{"resourceType": "Patient","name": [{"family": "One","given": [ "Two", "James" ]}],"gender": "male","birthDate": "1974-12-25"}' <http://hapi.fhir.org/baseR4/Patient>