INPUT_OBJECT

CreateTaxProviderMutationInput

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

link GraphQL Schema definition

  • input CreateTaxProviderMutationInput {
  • # A descriptive name.
  • name: String!
  • # The type of `TaxProvider`.
  • type: TaxProviderType!
  • # Whether or not this is enabled.
  • enabled: Boolean!
  • # The list of subdivisions where this tax provider will collect taxes.
  • subdivisions: [Subdivision]
  • # Credentials for the tax provider.
  • tax_provider_credentials: [TaxProviderCredentialMutationInput]!
  • # Whether this Avalara tax provider is the default/primary provider.
  • primary: Boolean
  • # IDs of `Companies`.
  • company_ids: [Int]
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by