INPUT_OBJECT

CreateCoreCreditCardMutationInput

The input object that defines the fields for the createCoreCreditCard mutation.

link GraphQL Schema definition

  • input CreateCoreCreditCardMutationInput {
  • # The name on the credit card.
  • name_on_card: String!
  • # The credit card number.
  • card_number: Numeric!
  • # The CVV2 number (also called CVV, CSV, and CID, depending on the card issuer.)
  • cvv2: Numeric!
  • # The month the credit card expires.
  • expiration_month: Int!
  • # The year the credit card expires.
  • expiration_year: Int!
  • # The billing address for the payment method.
  • address: CreateAddressMutationInput!
  • }

link Require by