fhir_body | R Documentation |
Create fhir_body object
fhir_body(content, type)
## S4 method for signature 'list,missing'
fhir_body(content)
## S4 method for signature 'list,character'
fhir_body(content, type)
## S4 method for signature 'character,character'
fhir_body(content, type)
content |
A character vector of length one representing the body for the post in the format specified in |
type |
A string defining the type of the body e.g. |
An object of type fhir_body.
#body that could be used in a FHIR search request POSTed to an URL like baseurl/Patient/_search
fhir_body(content = "gender=female&_summary=count", type="application/x-www-form-urlencoded")
fhir_body(content = list("gender" = "female", "_summary" = "count"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.