Update CoverageEligibilityRequest with identifier {identifier}

CoverageEligibilityRequest on the FHIR specification website.

The CoverageEligibilityRequest provides patient and insurance coverage information to an insurer for them to respond, in the form of an CoverageEligibilityResponse, with information regarding whether the stated coverage is valid and in-force and optionally to provide the insurance details of the policy.

The body should be a valid FHIR object for CoverageEligibilityRequest.

Here is an example:

{
  "resourceType": "CoverageEligibilityRequest",
  "id": "52345",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">A human-readable rendering of the CoverageEligibilityRequest</div>"
  },
  "identifier": [
    {
      "system": "http://happyvalley.com/coverageelegibilityrequest",
      "value": "52345"
    }
  ],
  "status": "active",
  "priority": {
    "coding": [
      {
        "code": "normal"
      }
    ]
  },
  "purpose": [
    "validation"
  ],
  "patient": {
    "reference": "Patient/pat1"
  },
  "created": "2014-08-16",
  "provider": {
    "reference": "Organization/1"
  },
  "insurer": {
    "reference": "Organization/2"
  },
  "insurance": [
    {
      "focal": true,
      "coverage": {
        "reference": "Coverage/9876B1"
      }
    }
  ]
}

You can reference the FHIR documentation to determine the format for CoverageEligibilityRequest.

Language
Authorization
Click Try It! to start a request and see the response here!