Using Xero API for PHP, I am able to retrieve a list of employees by using the following:
$xero->load('PayrollAU\\Employee')->execute();
However, this does not return the employees address. Other information is returned (name, email, gender, etc) but not the address.
How do I retrieve the employee's address?