Create FHIR Resource
POST {{host}}/fhir/Patient
Request Body
{"resourceType"=>"Patient", "id"=>"{{patient_id}}", "meta"=>{"source"=>"postman_tests", "versionId"=>"1", "tag"=>[{"code"=>"postman_tests", "system"=>"test"}], "profile"=>["http://hl7.org/fhir/StructureDefinition/Patient"], "security"=>[{"system"=>"http://terminology.hl7.org/CodeSystem/v3-Confidentiality", "code"=>"R"}]}, "identifier"=>[{"type"=>{"coding"=>[{"system"=>"http://terminology.hl7.org/CodeSystem/v2-0203", "code"=>"VS", "display"=>"VISA"}]}, "system"=>"http://example/identifier/visa", "value"=>"{{patient_identifier}}"}], "active"=>true, "name"=>[{"use"=>"official", "text"=>"{{patient_full_name}}", "family"=>"{{patient_family_name}}", "given"=>["{{patient_first_name}}"]}], "telecom"=>[{"system"=>"email", "value"=>"patient@email.com", "use"=>"work"}, {"system"=>"phone", "value"=>"050-445-97", "use"=>"work"}], "communication"=>[{"language"=>{"coding"=>[{"code"=>"FR", "system"=>"http://example/languages"}]}}, {"language"=>{"coding"=>[{"code"=>"NL", "system"=>"http://example/languages"}]}}], "address"=>[{"city"=>"Kyiv"}], "gender"=>"{{patient_gender}}", "birthDate"=>"{{patient_birthDate}}"}