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
| Name | Type | Description |
|---|---|---|
email | String! | Email address of the buyer. Must be unique within the shop. |
firstName | String! | First name of the buyer. |
lastName | String! | Last name of the buyer. |
telephone | String | Telephone number of the buyer. |
organisation | String | Organization or company name associated with the buyer. |
taxNumber | String | Tax 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. |
notes | String | Notes or comments about the buyer. |
birthdate | Date | Birthdate of the buyer. |