Loop

Setting up an import from Loop

This page contains information specific to 10ninety. For a general guide on setting up a property import, please see our 'Creating your first property import' guide.

When creating an import from Loop, you'll be presented with the following fields:

API Key - You will need to obtain your API Key directly from Loop.

Code snippets

Import sold properties

add_filter( 'propertyhive_loop_endpoints', 'additional_loop_endpoint' );
function additional_loop_endpoint($loop_endpoints)
{
    $loop_endpoints[] = '/property/residential/sold/website';
    return $loop_endpoints;
}

With the above in place, run another import and you should see sold properties imported.

Don't forget to map 'Sold' in the custom field mapping section of the import settings.