CartAddress
Address information for cart delivery and billing.
Contains complete address details including personal information, location data, and contact details used for order processing and delivery.
type CartAddress {
company: String
gender: Gender
firstName: String!
middleName: String
lastName: String!
street: String!
number: String
numberExtension: String
postalCode: String!
city: String!
region: String
country: String!
code: String
email: String
mobile: String
phone: String
icp: YesNo
notes: String
}
Fields
CartAddress.company
● String
scalar
Company or organization name.
Used for business addresses where the delivery or billing should be addressed to a specific company.
CartAddress.gender
● Gender
enum
Gender of the address contact person.
Used for proper addressing in communications and delivery instructions.
CartAddress.firstName
● String!
non-null scalar
First name of the address contact person.
Required for personal identification and delivery confirmation.
CartAddress.middleName
● String
scalar
Middle name or initial of the address contact person.
Optional additional name information for complete identification.
CartAddress.lastName
● String!
non-null scalar
Last name or surname of the address contact person.
Required for personal identification and delivery confirmation.
CartAddress.street
● String!
non-null scalar
Street name for the address.
Primary location identifier for delivery and billing purposes.
CartAddress.number
● String
scalar
House or building number.
Specific location identifier within the street for precise delivery.
CartAddress.numberExtension
● String
scalar
Additional address information such as apartment, suite, or unit number.
Used for multi-unit buildings or complex delivery locations.
CartAddress.postalCode
● String!
non-null scalar
Postal or ZIP code for the address.
Required for mail delivery and location verification.
CartAddress.city
● String!
non-null scalar
City or municipality name.
Required geographic identifier for delivery routing and address validation.
CartAddress.region
● String
scalar
State, province, or regional identifier.
Additional geographic information for address precision and delivery routing.
CartAddress.country
● String!
non-null scalar
Country name or code.
Required for international shipping and address validation.
CartAddress.code
● String
scalar
Additional address code or reference.
Used for internal address identification or special delivery instructions.
CartAddress.email
● String
scalar
Email address for delivery notifications and communication.
Used for order updates, delivery confirmations, and customer communication.
CartAddress.mobile
● String
scalar
Mobile phone number for delivery coordination.
Primary contact number for delivery notifications and coordination.
CartAddress.phone
● String
scalar
Landline phone number for additional contact options.
Alternative contact method for delivery coordination and customer service.
CartAddress.icp
● YesNo
enum
Indicates if this is an Intra-Community Supply (ICS) address.
Used for VAT exemption on cross-border B2B transactions within the EU.
CartAddress.notes
● String
scalar
Additional notes or special delivery instructions.
Free-form text for specific delivery requirements, access codes, or special handling instructions.
Member Of
Cart
object