put https://fhir-api.zapehr.com/r4b/EnrollmentRequest/
EnrollmentRequest on the FHIR specification website.
This resource provides the insurance enrollment details to the insurer regarding a specified coverage.
The body should be a valid FHIR object for EnrollmentRequest.
Here is an example:
{
"resourceType": "EnrollmentRequest",
"id": "22345",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">A human-readable rendering of the EnrollmentRequest.</div>"
},
"identifier": [
{
"system": "http://happyvalley.com/enrollmentrequest",
"value": "EN22345"
}
],
"status": "active",
"created": "2014-08-16",
"insurer": {
"reference": "Organization/2"
},
"provider": {
"reference": "Organization/1"
},
"candidate": {
"reference": "Patient/1"
},
"coverage": {
"reference": "Coverage/9876B1"
}
}
You can reference the FHIR documentation to determine the format for EnrollmentRequest
.