Skip to content

Era

An Electronic Remittance Advice (ERA) type

Fields

ach_check_number · String · The ACH or check number for the payment
external_era_id · String! · required · The ID of the ERA in the remote system
id · ID! · required · The unique identifier of the ERA
insurance_status · String · The status of the insurance
member_id · String · The ID of the member
member_name · String · The name of the member
paid_date · ISO8601Date · The date the payment was made
payer_id · String · The contact information for the payer
payer_name · String · The name of the payer
pcn · String · The PCN (Processor Control Number)
pdf · String · Base64-encoded PDF representation of the ERA
service_lines · EraServiceLineConnection! · required · The service lines for the claim

Used By

Definition

"""
An Electronic Remittance Advice (ERA) type
"""
type Era {
"""
The ACH or check number for the payment
"""
ach_check_number: String
"""
The ID of the ERA in the remote system
"""
external_era_id: String!
"""
The unique identifier of the ERA
"""
id: ID!
"""
The status of the insurance
"""
insurance_status: String
"""
The ID of the member
"""
member_id: String
"""
The name of the member
"""
member_name: String
"""
The date the payment was made
"""
paid_date: ISO8601Date
"""
The contact information for the payer
"""
payer_id: String
"""
The name of the payer
"""
payer_name: String
"""
The PCN (Processor Control Number)
"""
pcn: String
"""
Base64-encoded PDF representation of the ERA
"""
pdf: String
"""
The service lines for the claim
"""
service_lines(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
): EraServiceLineConnection!
}