> For the complete documentation index, see [llms.txt](https://docs.keyfax.biz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.keyfax.biz/integrations/apis/soap/xml-schemas/address-data.md).

# Address data

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.

<figure><img src="/files/pYW9FLZb3OcHMb8nhaGy" alt=""><figcaption><p>Full Address</p></figcaption></figure>

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>georgeps@gmailx.com</Email>
		<HomeTel>01223 388277</HomeTel>
		<MobileTel>07968 123426</MobileTel>
		<WorkTel>01223 388277</WorkTel>
		<Forename>George</Forename>
	</KFAddress>
</FullAddress>
```

whereas a partial address:

<figure><img src="/files/zXoYJKxVuWZKF4YW7Dau" alt=""><figcaption><p>Partial Address</p></figcaption></figure>

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>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.keyfax.biz/integrations/apis/soap/xml-schemas/address-data.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
