Skip to main content

ExplanationOfBenefit

The ExplanationOfBenefit resource provides the "claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided." (HL7 FHIR R4 ExplanationOfBenefit)

Supported Profiles

This API supports the following FHIR profiles:

Operations

The Certified and Regulated Patient Access API ExplanationOfBenefit resource supports the following standard operations. However, support varies by the targeted CareRecord or solution.

CareRecord / SolutionCreateReadUpdateSearch
GEHRIMED----
myAvatar-Yes-Yes
myEvolv----
myUnity----
TheraOffice-Yes-Yes
info

Not all Netsmart solutions support ExplanationOfBenefit search. See supported operations table above and consult your target solution's documentation for more information.

This resource supports standard search parameters in addition to the common parameters.

Standard Parameters

NameTypeDescription
patientreferenceREQUIRED The reference to the patient
createddateThe creation date for the EOB
identifiertokenThe business identifier of the explanation of benefit
pagestringZero-based page index
statustokenStatus of the instance
_revincludespecialInclude Provenance resource(s) that reference the matched search results. Allowed: "Provenance:target"

Search Examples

Via POST

The POST method is recommended as it keeps health information out of the URL.

Search by Patient
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/ExplanationOfBenefit/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/123"
Via GET
Search by Patient
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/ExplanationOfBenefit?patient=Patient/123 \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"