SubmitDependentCardApplicationInput
User submitted data for a dependent card application. Eventually, this type may include phone number and address data, but for now we re-use the phone number and the shipping address from the primary account holder's profile.
input SubmitDependentCardApplicationInput {
dateOfBirth: DateString!
idempotencyKey: String
name: PersonNameInput!
tin: SSNString!
}
Fields
SubmitDependentCardApplicationInput.dateOfBirth
● DateString!
non-null scalar
The Dependent Cardholder's Date of Birth in YYYY-MM-DD format
SubmitDependentCardApplicationInput.idempotencyKey
● String
scalar
The idempotent key for this request, which is optional. Key may be comprised of alphanumeric values, as well as the following symbols: '_', '-', '.'
SubmitDependentCardApplicationInput.name
● PersonNameInput!
non-null input
The Dependent Cardholder's name
SubmitDependentCardApplicationInput.tin
● SSNString!
non-null scalar
The Dependent Cardholder's Tax Identification number (i.e. SSN).
Member of
submitDependentCardApplication
mutation