Przejdź do głównej zawartości

CartBuyerIdentity

Buyer identity attached to the cart — email, phone, locale hints used during checkout and on the resulting order.

type CartBuyerIdentity {
countryCode: CountryCode
customerId: ID
email: String
languageCode: LanguageCode
phone: String
}

Fields

CartBuyerIdentity.countryCode ● CountryCode enum

Buyer country (ISO 3166-1 alpha-2). Hint for pricing, tax and shipping eligibility before an address is provided.

CartBuyerIdentity.customerId ● ID scalar

Customer record ID when the cart is owned by a signed-in customer. Null for guest carts.

CartBuyerIdentity.email ● String scalar

Buyer email — receives the order confirmation when the cart completes.

CartBuyerIdentity.languageCode ● LanguageCode enum

Buyer preferred language (ISO 639-1). Used for the order confirmation email and any localised content.

CartBuyerIdentity.phone ● String scalar

Buyer phone number, free-form (validated only for length).

Member Of

Cart object