Skip to content

Platform Connector Reference

Last updated: March 19, 20268 min readAdvancedDeveloper

Arqam360 supports 10 platform connectors for server-side consent forwarding. Each connector transforms consent data into platform-specific formats.

Supported Platforms

  • Meta CAPI — Conversions API with Limited Data Use
  • Server-side GTM — GCM v2 consent_update events
  • Google Enhanced Conversions — Conversion measurement
  • GA4 Measurement Protocol — Server-side events
  • TikTok Events API — Limited Data Mode
  • Snapchat CAPI — Conversion events
  • LinkedIn Conversions API — B2B conversion tracking
  • HubSpot — Contact consent sync
  • Mixpanel — Event tracking
  • BigQuery — Raw data export

Meta CAPI Format

javascript
{
  "event_name": "ConsentUpdate",
  "event_time": 1710748800,
  "user_data": { "client_ip_address": "..." },
  "custom_data": {
    "consent_analytics": true,
    "consent_marketing": false
  },
  "data_processing_options": ["LDU"]
}

GA4 Measurement Protocol Format

javascript
POST /mp/collect?measurement_id=G-XXX&api_secret=YYY

{
  "client_id": "...",
  "events": [{
    "name": "consent_update",
    "params": { "analytics_storage": "granted" }
  }]
}

Common Error Codes

  • PLATFORM_AUTH_FAILED — Invalid access token or API secret
  • PLATFORM_RATE_LIMITED — Too many requests to platform API
  • CIRCUIT_OPEN — Platform connector circuit breaker is open (5 failures)
  • PAYLOAD_INVALID — Consent data failed platform-specific validation
When a platform connector fails 5 times in 60 seconds, its circuit breaker opens. It will automatically retry after the reset timeout.

Was this article helpful?