OrderAddress
Address information associated with an order including billing and delivery addresses with complete contact details
type OrderAddress {
id: Int!
orderId: Int!
createdAt: DateTime!
lastModifiedAt: DateTime!
firstName: String
middleName: String
lastName: String
gender: Gender!
company: String
street: String!
number: String
numberExtension: String
postalCode: String!
city: String!
region: String
country: String!
phone: String
mobile: String
email: String
code: String
notes: String
type: AddressType!
icp: YesNo!
url: String
name: String
}
Fields
OrderAddress.id ● Int! non-null scalar
Unique identifier for this address
OrderAddress.orderId ● Int! non-null scalar
ID of the order this address belongs to
OrderAddress.createdAt ● DateTime! non-null scalar
Date and time when this address was created
OrderAddress.lastModifiedAt ● DateTime! non-null scalar
Date and time when this address was last modified
OrderAddress.firstName ● String scalar
First name of the person at this address
OrderAddress.middleName ● String scalar
Middle name of the person at this address
OrderAddress.lastName ● String scalar
Last name of the person at this address
OrderAddress.gender ● Gender! non-null enum
Gender of the person at this address
OrderAddress.company ● String scalar
Company name at this address
OrderAddress.street ● String! non-null scalar
Street name and number
OrderAddress.number ● String scalar
House or building number
OrderAddress.numberExtension ● String scalar
Extension to the house number (e.g., apartment, suite)
OrderAddress.postalCode ● String! non-null scalar
Postal or ZIP code
OrderAddress.city ● String! non-null scalar
City name
OrderAddress.region ● String scalar
State, province, or region code
OrderAddress.country ● String! non-null scalar
Country code (ISO 2-letter)
OrderAddress.phone ● String scalar
Phone number
OrderAddress.mobile ● String scalar
Mobile phone number
OrderAddress.email ● String scalar
Email address for this contact
OrderAddress.code ● String scalar
Internal code or reference for this address
OrderAddress.notes ● String scalar
Additional notes about this address
OrderAddress.type ● AddressType! non-null enum
Type of address (billing, shipping, etc.)
OrderAddress.icp ● YesNo! non-null enum
ICP (Pickup) indicator
OrderAddress.url ● String scalar
Website URL if applicable
OrderAddress.name ● String scalar
Display name for this address
Returned By
orderAddress query ● orderAddresses query ● orderAddressUpdate mutation
Member Of
Order object