Skip to content

CreateSecondaryClaimInput

Autogenerated input type of CreateSecondaryClaim

Fields

deprecated DO NOT USE
primary_claim_id · ID! · required · The ID of the primary claim (must be locked with ERA)
insurance_plan_id · ID! · required · The secondary insurance plan ID (must belong to same patient)
member_number · String · Secondary insurance member/subscriber number (required if no existing policy)
group_number · String · Secondary insurance group number
holder_relationship · String · Relationship to insured (defaults to "Self")
holder_dob · String · Policyholder date of birth (required when creating new policy)
additional_claim_information · String · Additional claim info (Box 19) - defaults to primary claim value
prior_authorization_number · String · Prior authorization number (Box 23) - defaults to primary claim value

Used By

Definition

"""
Autogenerated input type of CreateSecondaryClaim
"""
input CreateSecondaryClaimInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
The ID of the primary claim (must be locked with ERA)
"""
primary_claim_id: ID!
"""
The secondary insurance plan ID (must belong to same patient)
"""
insurance_plan_id: ID!
"""
Secondary insurance member/subscriber number (required if no existing policy)
"""
member_number: String
"""
Secondary insurance group number
"""
group_number: String
"""
Relationship to insured (defaults to "Self")
"""
holder_relationship: String
"""
Policyholder date of birth (required when creating new policy)
"""
holder_dob: String
"""
Additional claim info (Box 19) - defaults to primary claim value
"""
additional_claim_information: String
"""
Prior authorization number (Box 23) - defaults to primary claim value
"""
prior_authorization_number: String
}