Card
Represents a Card (Physical or Virtual) Associated with One or More Offerings/Accounts
type Card {
cardholder: PersonName!
expiration: String!
fulfillmentStatus: CardFulfillmentStatus!
gatewayType: CardGatewayType!
id: ID!
last4: String!
pin: CardPin
programId: ID!
status: String!
type: CardType!
}
Fields
Card.cardholder
● PersonName!
non-null object
The name of the user to which this card belongs.
Card.expiration
● String!
non-null scalar
The expiration of the card in MMYY format.
Card.fulfillmentStatus
● CardFulfillmentStatus!
non-null enum
The fulfillment status of the card -- whether it has been sent to the user.
Card.gatewayType
● CardGatewayType!
non-null enum
Indicates the underlying issuer/processor gateway.
Card.id
● ID!
non-null scalar
The ID of the card, used for operations against the card.
Card.last4
● String!
non-null scalar
A masked representation of the card number.
Card.pin
● CardPin
object
Metadata describing the state of a PIN for this Card
Card.programId
● ID!
non-null scalar
Related program ID
Card.status
● String!
non-null scalar
The status of the card -- whether it is active, or inactive.
Card.type
● CardType!
non-null enum
The type of the card
Member of
ListCardsResults
object