Skip to main content

Individual

An Individual

type Individual {
address: PhysicalAddress
dateOfBirth: LocalDate
dependents: [Dependent!]!
email: EmailAddress
healthWallet(where: HealthWalletFilterInput): HealthWallet
id: ID!
language: SupportedLanguage
mailingAddress: PhysicalAddress
name: IndividualName!
organizationMemberships(
after: String
first: Int = 100
where: OrganizationMembershipsFilterInput
): OrganizationMembershipsResults!
phoneNumber: PhoneNumber
tin: String
verifications: [Verification!]!
}

Fields

Individual.address ● PhysicalAddress object

The Individual's primary address

Individual.dateOfBirth ● LocalDate scalar

The Individual's date of birth

Individual.dependents ● [Dependent!]! non-null object

List of dependents associated with this individual Returns empty array if feature flag disabled

Individual.email ● EmailAddress scalar

The Individual's email address

Individual.healthWallet ● HealthWallet object

The Individual's Health Wallet

Individual.healthWallet.where ● HealthWalletFilterInput input

Individual.id ● ID! non-null scalar

The ID of the Individual

Individual.language ● SupportedLanguage enum

The Individual's language preference for all communications

Individual.mailingAddress ● PhysicalAddress object

The Individual's mailing address

Individual.name ● IndividualName! non-null object

The Individual's name

Individual.organizationMemberships ● OrganizationMembershipsResults! non-null object

Organization memberships for this individual

Individual.organizationMemberships.after ● String scalar

Return the memberships that come after the specified cursor

Individual.organizationMemberships.first ● Int scalar

The number of memberships to retrieve per page

Individual.organizationMemberships.where ● OrganizationMembershipsFilterInput input

Filter criteria used to match organization memberships

Individual.phoneNumber ● PhoneNumber scalar

The Individual's phone number

Individual.tin ● String scalar

The Individual's Tax Identification Number

Individual.verifications ● [Verification!]! non-null object

The Individual's Verifications

Member Of

CreateIndividualResult object ● EnrollIndividualInBenefitResult object ● IndividualsResults object ● TransferBenefitForIndividualResult object ● UnenrollIndividualFromBenefitResult object ● UpdateIndividualResult object ● VerifyIndividualResult object

Implemented By

IndividualResponse union