People

Returns information about a business's people. Provides requests for obtaining both biographies and a contact list via the API using the 'biographies' and 'contacts' request methods.

Contacts

Returns a list of contacts made up of business's people.

Filter Key: None

Request

https://ifaportals.co.uk/api/1.0/contacts/apikey/responseformat

XML Response

<?xml version="1.0" encoding="utf-8"?>
<contacts>
    <header/>
    <data>
        <contact>
            <peopleID></peopleID>
            <peopleName></peopleName>
            <peoplePosition></peoplePosition>
            <peopleTelephone></peopleTelephone>
            <peopleMobile></peopleMobile>
            <peopleEmail></peopleEmail>
            <peopleDisplayOrder></peopleDisplayOrder>
        </contact>
    </data>
</contacts>

PHP

$api->getContacts();

Biographies

Returns biographies for business's people, including photo where available.

Filter Key: None

Request

https://ifaportals.co.uk/api/1.0/biographies/apikey/responseformat

XML Response

<?xml version="1.0" encoding="utf-8"?>
<biographies>
    <header/>
    <data>
        <biography>
            <peopleID></peopleID>
            <peopleName></peopleName>
            <peoplePosition></peoplePosition>
            <peopleTelephone></peopleTelephone>
            <peopleMobile></peopleMobile>
            <peopleEmail></peopleEmail>
            <peoplePicUri></peoplePicUri>
            <peopleBiography></peopleBiography>
            <peopleDisplayOrder></peopleDisplayOrder>
        </biography>
    </data>
</biographies>

PHP

$api->getBiographies();