InsurancePayment
An insurance payment object
Fields
ach_check_number
· String · The ACH or check number 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 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!}