propertyType in address - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

The propertyType filter is used to return addresses which matches certain property types. Available values are:

Table 1.
Input Definition
B Business
M Mixed
R Residential
V Vacant
X Other

The sample query below returns business addresses that are related to the record specified by the preciselyID.

{
  getById(id: "P0000GL3MWS9", queryType: PRECISELY_ID) {
    addresses(propertyType: "B") {
      data {
        preciselyID
        propertyType {
          value
          description
        }
      }
    }
  }
}