INPUT_OBJECT

CreateCreditCardMutationInput

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

link GraphQL Schema definition

  • input CreateCreditCardMutationInput {
  • # The ID of an Account.
  • account_id: Int64Bit!
  • # 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!
  • # Whether or not this payment method is enabled for automatic payments.
  • auto: Boolean!
  • # The billing address for the payment method.
  • address: CreateAddressMutationInput!
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by