Region Venues
Searches for specific venues or businesses within a region.
POST /api/agents/sales/regionVenues
Request Body
{
"siteId": "123e4567-e89b-12d3-a456-426614174000",
"searchTerm": "Starbucks",
"city": "New York",
"region": "NY",
"maxVenues": 5
}| Parameter | Type | Required | Description |
|---|---|---|---|
siteId | string | Yes | The UUID of the site. |
searchTerm | string | Yes | Term to search for. |
city | string | Yes | City for the search. |
region | string | Yes | Region/State for the search. |
country | string | No | Country code. |
maxVenues | number | No | Maximum venues to return (default: 1). |
Response
Returns a list of found venues with details.
GET /api/agents/sales/regionVenues
Also available as GET request with query parameters matching the body fields above.
Last updated on