INPUT_OBJECT

BuyerCreateInput

link GraphQL Schema definition

1input BuyerCreateInput {
2
3# Exactly one input field should be provided
4account: AccountInput!
5
6store: StoreInput!
7
8status: Status!
9
10websiteUrl: String
11
12receiveAutoEmails: Boolean!
13
14receiveNewsletters: Boolean
15
16billingAddress: BuyerAddressInput!
17
18# Send Welcome to Showroom email after creating new buyer.
19# Works only if you have exactly 1 Showroom API plugin configured in store
20sendWelcomeToShowroomEmail: Boolean
21
22# Assign an external ID to reference this object by it later
23externalId: String
24}

link Required by