diff --git a/src/connections/reverse-etl/index.md b/src/connections/reverse-etl/index.md index e4cf9e19e7..be1181106f 100644 --- a/src/connections/reverse-etl/index.md +++ b/src/connections/reverse-etl/index.md @@ -180,6 +180,9 @@ To get started with using Reverse ETL for subscriptions: ## Record diffing Reverse ETL computes the incremental changes to your data directly within your data warehouse. The Unique Identifier column is used to detect the data changes, such as new, updated, and deleted records. +> info "Delete Records Payload" +> The only value passed for deleted records is its unique ID which can be accessed as `__segment_id`. + In order for Segment to compute the data changes within your warehouse, Segment needs to have both read and write permissions to the warehouse schema table. At a high level, the extract process requires read permissions for the query being executed. Segment keeps track of changes to the query results through tables that Segment manages in a dedicated schema (for example, `_segment_reverse_etl`), which requires some write permissions. > warning ""