HAPI FHIR Server

create-type: Create a new FaxMessage instance

post
http://localhost:8080/fhir/R4/FaxMessage

Body

FHIR-JSON-RESOURCE

FHIR-JSON-RESOURCEobject

A FHIR resource

Response

200

Success

FHIR-JSON-RESOURCE

FHIR-JSON-RESOURCEobject

A FHIR resource

post/FaxMessage

Body

{
  "resourceType": "FaxMessage",
  "meta": {
    "profile": [
      "http://healthgorilla.com/fhir/Profile/FaxMessage"
    ]
  }
}
{ "resourceType": "FaxMessage", "meta": { "profile": [ "http://healthgorilla.com/fhir/Profile/FaxMessage" ] } }
 
curl --request POST \
  --url http://localhost:8080/fhir/R4/FaxMessage \
  --header 'Accept: application/fhir+json, application/fhir+xml' \
  --header 'Authorization: Bearer ' \
  --header 'Content-Type: application/fhir+json' \
  --data '{
  "resourceType": "FaxMessage",
  "meta": {
    "profile": [
      "http://healthgorilla.com/fhir/Profile/FaxMessage"
    ]
  }
}'
200
{}