# Retrieves the member EOB (Explanation of Benefits) PDF for the specified batch claim. Resolution order: 1. If the client/company is configured for Zelis RedCard EOBs, attempt external retrieval. 2. If external retrieval is unavailable, misconfigured, or not eligible, fall back to internal VBA report generation. The response always includes correlation identifiers (Subscriber_ID, Member_Seq, Batch_Number, Batch_Claim). Endpoint: GET /claims/{claimNumber}/eob Version: v1 Security: apiKeyAuth, bearerAuth ## Header parameters: - `vbasoftware-database` (string, required) Target client database/schema (multi?tenant routing header). ## Path parameters: - `claimNumber` (integer, required) VBA Claim Number ## Response 200 fields (text/plain): - `data` (object) Data Transfer Object (DTO) representing a generated Explanation of Benefits (EOB) document for a specific member claim within a claim batch. - `data.report_Bytes` (string,null) The raw binary contents of the EOB document (generally a PDF). Will be serialized as a Base64 string. Empty or null indicates the EOB could not be produced by either external or internal generation paths. - `data.isVBA_EOB` (boolean) Indicates the origin of the EOB document. True = Generated internally by the VBA reporting engine. False = Retrieved from an external partner (e.g. Zelis RedCard). - `data.subscriber_ID` (string,null) Subscriber identifier associated to the member whose claim produced this EOB. - `data.member_Seq` (string,null) Member sequence (beneficiary sequence) under the subscriber used to distinguish the covered individual. - `data.batch_Number` (integer) Claim batch number grouping the claim for which the EOB was generated. - `data.batch_Claim` (integer) Claim sequence within the batch identifying the exact claim instance. - `error` (object) - `error.detail` (string,null) A human-readable explanation specific to this occurrence of the problem. - `error.instance` (string,null) A URI reference that identifies the specific occurrence of the problem.It may or may not yield further information if dereferenced. - `error.status` (integer) The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem. - `error.title` (string,null) A short, human-readable summary of the problem type.It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization(e.g., using proactive content negotiation; see[RFC7231], Section 3.4). - `error.type` (string,null) A URI reference [RFC3986] that identifies the problem type. This specification encourages that, when dereferenced, it provide human-readable documentation for the problem type (e.g., using HTML [W3C.REC-html5-20141028]). When this member is not present, its value is assumed to be "about:blank". - `debug` (object) - `debug.activityID` (string, required) ## Response 401 fields ## Response 404 fields ## Response 500 fields