Calimatic Connect|Documentation
PricingSign In
Google Ads

Google Ads

Import leads from Google Ads Lead Form Extensions.

Lead Generationoauthproxylead_sync

Connect Google Ads

Google Ads uses OAuth for authentication. Redirect your user to the login URL to start the authorization flow. After the user authorizes access, the callback is handled automatically.

# Redirect user to start OAuth flow
GET /auth/google_ads/login?account_id=YOUR_ACCOUNT_ID&redirect_uri=https://your-app.com/callback
# Callback handled automatically at
GET /auth/google_ads/callback

Subscribe to Webhooks

Set up a webhook subscription to receive real-time events from Google Ads:

POST /connect/v1/webhooks/google_ads/subscribe
# Headers
Authorization: YOUR_JWT_TOKEN
Content-Type: application/json
# Body
{
"url": "https://your-app.com/webhook"
}

List your existing webhook subscriptions:

GET /connect/v1/webhooks/google_ads/subscriptions
# Headers
Authorization: YOUR_JWT_TOKEN

Make API Calls via Proxy

Use the proxy endpoint to make authenticated API calls to Google Ads without managing tokens yourself. Calimatic Connect handles credential injection and token refresh automatically.

POST /connect/v1/proxy/google_ads
# Headers
Authorization: YOUR_JWT_TOKEN
Content-Type: application/json
# Body
{
"method": "GET",
"path": "/me"
}

Check Status

Verify whether your Google Ads connection is active and credentials are valid:

GET /connect/v1/providers/google_ads/status
# Headers
Authorization: YOUR_JWT_TOKEN

Disconnect

Remove the Google Ads connection and revoke stored credentials:

DELETE /connect/v1/providers/google_ads/disconnect
# Headers
Authorization: YOUR_JWT_TOKEN