If you need to filter which jobs are downloaded you can use the filter matador_bullhorn_import_the_job_where
Here is an example where we filter to only fetch jobs with the status of Filled and Hot.
add_filter( 'matador_bullhorn_import_the_job_where', 'matador_bullhorn_import_the_job_where' );
function matador_bullhorn_import_the_job_where( $where ){
$where .= " AND status IN ('Filled', 'Hot')";
return $where;
}