INPUT_OBJECT

CreateBankAccountMutationInput

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

link GraphQL Schema definition

  • input CreateBankAccountMutationInput {
  • # The ID of an Account.
  • account_id: Int64Bit!
  • # The name on the account.
  • name_on_account: String!
  • # The type of bank account this is.
  • bank_account_type: BankAccountType!
  • # The bank account number.
  • account_number: Numeric!
  • # The bank routing number.
  • routing_number: Numeric!
  • # 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