Retrieve Eligibility PDF (271)

Retrieve a PDF version of the 271 benefits response for the specified eligibility check

GET/eligibility-manager/eligibility-checks/{eligibilityCheckId}/pdf

This endpoint retrieves the eligibility PDF for a 270/271 eligibility check. Stedi generates a PDF for eligibility checks with valid 271 responses. The PDF contains a summary of the request details and a human-readable version of the 271 response.

  1. Call this endpoint with the eligibilityCheckId path parameter set to the eligibility check's ID. You can retrieve this ID from the:

    • id property of the real-time JSON, Raw X12, and SOAP eligibility check endpoint responses.
    • items.id property of the Poll Batch Eligibility Checks endpoint response.
    • Eligibility check's details page within the Stedi portal.
  2. The endpoint returns the PDF as a base64-encoded string by default. To receive unencoded binary PDF data instead, include the Accept: application/pdf request header.

    To view the PDF, save the unencoded response body to a file with a .pdf extension.

    curl --request GET \
     --url "https://manager.us.stedi.com/2024-04-01/eligibility-manager/eligibility-checks/{eligibilityCheckId}/pdf" \
     --header "Accept: application/pdf" \
     --header "Authorization: <api_key>" \
     --output ~/Desktop/eligibility.pdf
Authorization
RequiredHeader

A Stedi API Key for authentication.

Path Parameters

The globally unique identifier for this eligibility check across all Stedi accounts. It's formatted as ec_<uuid>. For example: ec_550e8400-e29b-41d4-a716-446655440000. You can find it:

  • In the id property of the real-time JSON, Raw X12, and SOAP eligibility check endpoint responses.
  • In the items.id property of the Poll Batch Eligibility Checks endpoint response.
  • On the eligibility check's details page within the Stedi portal.

Response

application/pdf

GetEligibilityCheckPdf 200 response