HAPI FHIR Server

create-type: Create a new Bundle instance

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

Body

FHIR-JSON-RESOURCE

FHIR-JSON-RESOURCEobject

A FHIR resource

Response

200

Success

FHIR-JSON-RESOURCE

FHIR-JSON-RESOURCEobject

A FHIR resource

post/Bundle

Body

{
  "resourceType": "Bundle"
}
{ "resourceType": "Bundle" }
 
curl --request POST \
  --url http://localhost:8080/fhir/R4/Bundle \
  --header 'Accept: application/fhir+json, application/fhir+xml' \
  --header 'Authorization: Bearer ' \
  --header 'Content-Type: application/fhir+json' \
  --data '{
  "resourceType": "Bundle"
}'
200
{}