get_locations
Retrieve detailed location data for a business, including address, coordinates, and URLs, using the business ID for DevHub CMS integration.
Instructions
Get all locations for a business
Returns a list of locations with the following fields:
- id: Location ID that can be used in the other tools
- location_name: Location name
- location_url: Location URL in DevHub
- street: Street address
- city: City
- state: State
- country: Country
- postal_code: Postal code
- lat: Latitude
- lon: Longitude
Input Schema
Name | Required | Description | Default |
---|---|---|---|
business_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"business_id": {
"title": "Business Id",
"type": "integer"
}
},
"required": [
"business_id"
],
"title": "get_locationsArguments",
"type": "object"
}