OrderShippingAddress
A postal address an order ships to.
- cityType: stringrequired
City.
- countryType: string
Code requiredDestination country as a two-letter ISO 3166-1 alpha-2 code.
- line1Type: stringrequired
Street address, first line.
- line2Type: string nullablerequired
Street address, second line.
nullwhen unused. - phoneType: string nullablerequired
Contact phone.
nullwhen not provided. - postalType: string
Code requiredPostal or ZIP code.
- recipientType: string
Name requiredName the parcel is addressed to.
- stateType: string nullablerequired
State or province.
nullwhen unused.
Examples
{
"recipientName": "Marie Dubois",
"line1": "14 Rue des Lilas",
"line2": null,
"city": "Lyon",
"state": null,
"postalCode": "69003",
"countryCode": "FR",
"phone": null
}