Skip to main content

UserBuyerUpdateInput Input

Description

Input fields for updating a buyer's information, including personal details, contact information, addresses, and list memberships.

Declaration

input UserBuyerUpdateInput {
email: String!
firstName: String!
lastName: String!
telephone: String
organisation: String
taxNumber: String
lists: [ID]
addresses: [AddressInput]
notes: String
birthdate: Date
}

Fields

NameTypeDescription
emailString!Email address of the buyer. Must be unique within the shop.
firstNameString!First name of the buyer.
lastNameString!Last name of the buyer.
telephoneStringTelephone number of the buyer.
organisationStringOrganization or company name associated with the buyer.
taxNumberStringTax identification number for the buyer.
lists[ID]List of customer list reference IDs to associate the buyer with. Replaces the buyer's current list memberships.
addresses[AddressInput]List of addresses for the buyer. Replaces the buyer's current addresses.
notesStringNotes or comments about the buyer.
birthdateDateBirthdate of the buyer.