Available queries

Associated queryReturns multiple results
PostalAddress
CustomerPostalAddress
PostalAddresses✔️
CustomerPostalAddresses✔️

Available fields

LabelTypeNotesNull
address1stringThe first part of the address (ex : "4 private drive")✔️
address2stringThe second part of the address (ex : "In the closet under he 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")✔️
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{
  PostalAddresses{
    edges{
      node{
        address1
        address2
        city
        country
        dependent_locality
        location_name
        postal_code
        province
        sub_administrative_area
        sub_premise
      }
    }
  }
}