Customer.io
Automated messaging platform for targeted emails, push notifications, SMS, and in-app messages based on real-time behavioural data.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | Your Customer.io Site ID. Found in Settings > API Credentials in the Customer.io dashboard. |
api_key | secret | Yes | Your Customer.io API key for the Track API. Found in Settings > API Credentials. |
tracking_api_key | secret | Yes | Your Customer.io Tracking API key used for identifying users and tracking events. |
region | select | Yes | The data centre region for your Customer.io account. Determines the API endpoint used for requests. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Customer.io or filter by CDP.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/customer_io/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Customer.io",
"variant": "default",
"config": {
"site_id": "abc123def456",
"api_key": "xxxxxxxxxxxxxxxxxxxx",
"tracking_api_key": "xxxxxxxxxxxxxxxxxxxx"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the Customer.io API. No client-side scripts are loaded for this integration.
Visit Customer.io documentation for full API documentation and credential setup instructions.