Address data
How addresses are represented within Keyfax.
The data captured in Address questions can be returned as part of the Export XML. The actual nodes returned depends on the properties of the Address Question. For example, an Address question with all mandatory fields e.g.

Will return...
<FullAddress>
<KFAddress>
<Title>Mr</Title>
<Inits>G</Inits>
<Surname>Pokernhorn-Smythe</Surname>
<Department>HQ</Department>
<Company>GPS Ltd</Company>
<HouseNo>The Limes</HouseNo>
<Address1>Redlandbury</Address1>
<Address2>Storbridge</Address2>
<Town>Stockville</Town>
<County>Stocktonshire</County>
<Postcode>SR32 H67</Postcode>
<ContactTel>01223 388277</ContactTel>
<Extension>127</Extension>
<Fax>01223 377265</Fax>
<Email>[email protected]</Email>
<HomeTel>01223 388277</HomeTel>
<MobileTel>07968 123426</MobileTel>
<WorkTel>01223 388277</WorkTel>
<Forename>George</Forename>
</KFAddress>
</FullAddress>
whereas a partial address:

will return the following (nodes are omitted where no value was entered):
<PartialAddress>
<KFAddress>
<Title>Mr</Title>
<Inits>G</Inits>
<Surname>Pokernhorn-Smythe</Surname>
<HouseNo>The Limes</HouseNo>
<Town>Stockville</Town>
<HomeTel/>
<WorkTel>01226 288364</WorkTel>
</KFAddress>
</PartialAddress>
Last updated