Available queries

Associated queryReturns multiple results
BillToAddress
ShipToAddress
BillToAddresses✔️
ShipToAddresses✔️

Available fields

LabelTypeNotesNull
address1stringThe first part of the address (ex : "4 private drive")✔️
address2stringThe second part of the address (ex : "In the closet under the stairs")✔️
citystringThe city (ex : "Little Whinging")✔️
countrystringThe country (ex : "United kingdom")✔️
dependent_localitystringOnly used in certain countries, the locality from which the address depends for mail (ex : "Bethnal Green")✔️
location_namestringThe location's name (ex : "A very normal house")✔️
phone_numberstringThe location's phone number (ex : "313")✔️
postal_codestringThe location's postal code (ex : " E2 1AA")✔️
provincestringThe province (ex : "Surrey")✔️
sub_administrative_areastringThe sub administrative area, depends on each country✔️
sub_premisestringThe sub premise, depends on each country✔️

Example of a query

query{
  BillToAddresses{
    edges{
      node{
        address1
        address2
        city
        country
        dependent_locality
        location_name
        phone_number
        postal_code
        province
        sub_administrative_area
        sub_premise
      }
    }
  }
}