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:

Setting
Description
Required
Default

Google Maps API Key

Your Google Maps Platform API key with Geocoding API enabled

Yes

-

Configuration Steps

  1. Go to Workspace Settings > Business Integrations

  2. Locate the Google Maps section

  3. Enter your Google Maps API Key

  4. Save the settings

Getting a Google Maps API Key

  1. Create a new project or select an existing one

  2. Enable the Geocoding API

  3. Create credentials (API Key)

  4. Configure API key restrictions (recommended for security)

  5. Copy the API key to your workspace settings

Function Parameters

All parameters are optional - provide the address information you have available:

Parameter
Type
Description
Example

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?