Google Geocoding
The Google Geocoding business function provides address verification and normalization services using Google's Geocoding API. This function allows you to validate addresses, extract structured address
Settings Configuration
Before using the Google Geocoding function, you need to configure your workspace settings:
Google Maps API Key
Your Google Maps Platform API key with Geocoding API enabled
Yes
-
Configuration Steps
Go to Workspace Settings > Business Integrations
Locate the Google Maps section
Enter your Google Maps API Key
Save the settings
Getting a Google Maps API Key
Visit the Google Cloud Console
Create a new project or select an existing one
Enable the Geocoding API
Create credentials (API Key)
Configure API key restrictions (recommended for security)
Copy the API key to your workspace settings
Function Parameters
All parameters are optional - provide the address information you have available:
street
string
Street name and house number
"Hauptstrasse 123"
city
string
City or locality name
"Berlin"
postalCode
string
Postal or ZIP code
"10115"
country
string
Country name or ISO code
"Deutschland" or "DE"
Response Format
Successful Response
Address Not Found
Configuration Error
Confidence Levels
The validation confidence indicates how accurate the geocoding result is:
high: Exact address match (rooftop level accuracy)
medium: Street-level or interpolated accuracy
low: Approximate or area-level accuracy
Usage Examples
Example 1: Complete Address Verification
Example 2: Partial Address Lookup
Example 3: Address Validation in Form
Error Handling
Always implement proper error handling for address validation:
Last updated
Was this helpful?