Integrations with Reka Digital
Connect Reka Digital to popular third-party services to streamline your digital marketing workflows and automate processes.
curl -X POST https://api.example.com/v1/webhooks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-webhook-url.com/reka-events",
"events": ["campaign.created", "ad.approved"]
}'
const response = await fetch('https://api.example.com/v1/webhooks', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://your-webhook-url.com/reka-events',
events: ['campaign.created', 'ad.approved']
})
});
{
"id": "wh_1234567890",
"status": "active",
"url": "https://your-webhook-url.com/reka-events"
}
Overview
Reka Digital integrates seamlessly with leading advertising platforms, CRM systems, and custom tools. You can automate campaign data sync, receive real-time notifications via webhooks, and build bespoke extensions using our API.
Google Ads
Sync campaign performance and budgets automatically.
Facebook Ads
Track ad creatives and audience insights in real-time.
HubSpot CRM
Push lead data and conversion metrics directly to your CRM.
Start with our pre-built integrations for quick setup, then explore webhooks and API for advanced automation.
Google Ads Integration
Connect Reka Digital to Google Ads to import performance data and automate budget adjustments.
Create OAuth App
In Google Cloud Console, create a new OAuth 2.0 client ID for your Reka Digital account.
Authorize Connection
Use the authorization URL provided in your Reka Digital dashboard.
Sync Data
Select campaigns to sync and enable auto-reports.
Facebook Ads Integration
Use Facebook Marketing API v19.0 to connect.
const response = await fetch('https://graph.facebook.com/v19.0/act_<AD_ACCOUNT_ID>/campaigns?access_token=<ACCESS_TOKEN>', {
method: 'GET'
});
import requests
response = requests.get(
'https://graph.facebook.com/v19.0/act_<AD_ACCOUNT_ID>/campaigns',
params={'access_token': '<ACCESS_TOKEN>'}
)
Link via Business Manager for multi-account access.
Webhooks for Real-Time Notifications
Set up webhooks to receive instant updates on campaign events like ad approvals or budget spends.
Secure your webhook endpoint with HTTPS and validate signatures using the X-Reka-Signature header.
CRM Integrations (HubSpot)
Integrate with HubSpot to sync leads and conversions.
HubSpot Setup
- Generate an API key in HubSpot settings.
- Map Reka Digital events to HubSpot properties.
Bearer YOUR_HUBSPOT_API_KEY
Lead email address from ad conversions.
Custom API Integrations
For unsupported tools, use our REST API at https://api.example.com/v1.
Enable API access in your dashboard and use OAuth 2.0 flows.
const token = await fetch('https://api.example.com/v1/auth/token', {
method: 'POST',
body: new URLSearchParams({
grant_type: 'client_credentials',
client_id: 'YOUR_CLIENT_ID',
client_secret: 'YOUR_CLIENT_SECRET'
})
}).then(res => res.json());
Last updated Mar 3, 2026
Built with Documentation.AI