Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/f10fd11f714f3cdee7f46f37ed1b4e1a to your computer and use it in GitHub Desktop.
Save propertyhive/f10fd11f714f3cdee7f46f37ed1b4e1a to your computer and use it in GitHub Desktop.
Import specific agent/account from Rex
add_filter( 'propertyhive_rex_property_request_body', 'filter_account_in_rex_request' );
function filter_account_in_rex_request($data)
{
$data['criteria'][] = array(
"name" => "account_id",
"type" => "=",
"value" => "4392"
);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment