Address
Represents a physical or shipping address within the store system.
Type Definition
type Address {
name: String
email: String
firstName: String
lastName: String
company: String
companyId: String
vatNumber: String
vatId: String
phone: String
address1: String
address2: String
zipcode: String
city: String
stateCode: String
countryCode: String
info: String
latitude: String
longitude: String
}Fields
Relationships
The Address type is used in several contexts throughout the API. It serves as the shipping address and billing address for Cart objects, the address associated with Customer objects, and the pickup address for CartShippingMethod selections. Merchant objects also utilize Address to store business location information.
Example
query {
customer {
address {
name
email
firstName
lastName
company
phone
address1
address2
zipcode
city
stateCode
countryCode
}
}
}Implements
None