SUPPORT.TWILIO.COM END OF LIFE NOTICE: This site, support.twilio.com, is scheduled to go End of Life on February 27, 2024. All Twilio Support content has been migrated to help.twilio.com, where you can continue to find helpful Support articles, API docs, and Twilio blog content, and escalate your issues to our Support team. We encourage you to update your bookmarks and begin using the new site today for all your Twilio Support needs.

Filtering data that goes into your warehouse

Objective

This guide offers instructions on how to filter data going into your Warehouse destination.

 

Product

Twilio Segment

 

Environment

Segment Console

 

Procedure 

Customers on Segment’s Business plan can choose which sources, collections, and properties sync to your data warehouse using Selective Sync.

Selective Sync helps manage the data Segment sends to each warehouse, allowing you to sync different sets of data from the same source to different warehouses.

You can also use the Integrations Object to control whether or not data is sent to a specific warehouse.

 

Code to not send data to any warehouse

integrations: {
 All: true,
 Warehouses: {
    all: false
 }
}

 

Code to send data to all warehouses

integrations: {
 All: false,
 Warehouses: {
    all: true,
 }
}

 

Code to send data to specific warehouses

integrations: {
 All: false,
 Warehouses: {
    warehouseIds: ["<id1>", "<id2>"]
 }
}

 

Additional Information 

More details in our Warehouse docs here

Have more questions? Submit a request
Powered by Zendesk