Skip to content

InsurancePayment

An insurance payment object

Fields

ach_check_number · String · The ACH or check number
created_at · ISO8601DateTime! · required · When the payment record was created
created_by_id · ID · The ID of the user who created this payment (for manual payments)
deposit_status · InsurancePaymentsDepositStatusEnum! · required · The deposit status of the insurance payment
era_id · ID · The associated ERA ID
id · ID! · required · The insurance payment ID
npi · String · The NPI number
organization_id · ID! · required · The ID of the organization this payment belongs to
paid_amount · Float! · required · The amount paid
paid_date · ISO8601Date! · required · The date the payment was made
payer_name · String! · required · The name of the payer
source · String! · required · The source of the payment (automatic or manual)
updated_at · ISO8601DateTime! · required · When the payment record was last updated

Used By

Definition

"""
An insurance payment object
"""
type InsurancePayment {
"""
The ACH or check number
"""
ach_check_number: String
"""
When the payment record was created
"""
created_at: ISO8601DateTime!
"""
The ID of the user who created this payment (for manual payments)
"""
created_by_id: ID
"""
The deposit status of the insurance payment
"""
deposit_status: InsurancePaymentsDepositStatusEnum!
"""
The associated ERA ID
"""
era_id: ID
"""
The insurance payment ID
"""
id: ID!
"""
The NPI number
"""
npi: String
"""
The ID of the organization this payment belongs to
"""
organization_id: ID!
"""
The amount paid
"""
paid_amount: Float!
"""
The date the payment was made
"""
paid_date: ISO8601Date!
"""
The name of the payer
"""
payer_name: String!
"""
The source of the payment (automatic or manual)
"""
source: String!
"""
When the payment record was last updated
"""
updated_at: ISO8601DateTime!
}