INPUT_OBJECT

SellerInput

Attributes for creating a seller.

link GraphQL Schema definition

  • input SellerInput {
  • # Seller account type
  • accountType: SellerAccountTypeEnum!
  • # Business name for account
  • businessName: String!
  • # Registered legal business name
  • legalBusinessName: String!
  • # Business registration code (eg: ABN)
  • businessRegistrationCode: String
  • # POS type used by seller
  • posType: String
  • # Business email address
  • emailAddress: String
  • # Notification cc email address
  • emailCc: String
  • # Business phone contact number
  • phone: String!
  • # Business mobile contact number
  • mobile: String
  • # List of seller tags
  • tags: [String!]
  • # Attributes to assign to the user account.
  • user: UserCreateInput!
  • # Seller business address
  • address: AddressInput!
  • storeDescription: String
  • logo: ImageInput
  • # Attributes to assign to the CustomField.
  • customFields: [CustomFieldValueInput!]
  • # Metadata (key/value).
  • metadata: [KeyValueInput!]
  • # To enable advert auto mapping feature
  • enableAdvertAutoMapping: Boolean
  • # Maximum number of days allowed for dispatching an invoice. If the value is nil,
  • # the system will use the operator setting to measure SLA.
  • invoiceDispatchDaysThreshold: Int
  • }