-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Can business_match please be added?
/**
* Fetches results from the Business Match API.
*
* @param array $parameters
*
* @return stdClass
* @throws Stevenmaguire\Yelp\Exception\HttpException
* @link https://www.yelp.com/developers/documentation/v3/business_match
*/
public function getBusinessesMatchResults($parameters = [])
{
$path = $this->appendParametersToUrl('/v3/businesses/matches', $parameters);
$request = $this->getRequest('GET', $path);
return $this->processRequest($request);
}
$yelpparameters = [
'name' => substr('Taco Bell', 0, 64),
'address1' => substr('2308 E Riverside Dr', 0, 64),
'address2' => substr('', 0, 64),
'address3' => substr('', 0, 64),
'city' => substr('Austin', 0, 64),
'state' => 'TX',
'zip_code' => '78741',
'country' => 'US',
//'latitude' => '',
//'longitude' => '',
//'phone' => substr('', 0, 32),
//'yelp_business_id' => '',
'limit' => 10,
'match_threshold' => 'default',
];
$yelpresults = $yelpclient->getBusinessesMatchResults($yelpparameters);
Metadata
Metadata
Assignees
Labels
No labels