INPUT_OBJECT

AccountCreateInput

link GraphQL Schema definition

1input AccountCreateInput {
2
3name: String!
4
5status: Status!
6
7internalComment: String
8
9otherComment: String
10
11websiteUrl: String
12
13creditLimit: Int
14
15discounts: AccountDiscountsInput
16
17applyCreditLimit: Boolean
18
19blockIfUnpaidInvoices: Boolean
20
21hasBrandsRestriction: Boolean
22
23isInternal: Boolean
24
25carrierInformation: CarrierInformationInput
26
27# Exactly one input field should be provided
28market: MarketInput!
29
30# Exactly one input field should be provided
31pricelist: PricelistInput!
32
33allocationRule: AllocationRuleInput
34
35paymentTerms: TermsInput
36
37shippingTerms: TermsInput
38
39salesRepresentative: SalesRepresentativeInput
40
41taxClass: TaxClassInput
42
43documentTemplate: DocumentTemplateInput
44
45addBrands: [BrandInput!]
46
47addVisibleForAgents: [AdminUserInput!]
48
49accountAddress: AccountMainAddressInput
50
51shippingAddress: AccountShippingAddressInput
52
53billingAddress: AccountBillingAddressInput
54
55# Assign an external ID to reference this object by it later
56externalId: String
57}

link Required by