diff --git a/docs/platforms/kotlin/guides/kotlin-multiplatform/configuration/options.mdx b/docs/platforms/kotlin/guides/kotlin-multiplatform/configuration/options.mdx
index 20676db38e75f5..aab3851fc61ec0 100644
--- a/docs/platforms/kotlin/guides/kotlin-multiplatform/configuration/options.mdx
+++ b/docs/platforms/kotlin/guides/kotlin-multiplatform/configuration/options.mdx
@@ -20,6 +20,28 @@ Learn more about [DSN utilization](/product/sentry-basics/dsn-explainer/#dsn-uti
+
+
+If this flag is enabled, certain personally identifiable information (PII) is added by active integrations. By default, no such data is sent.
+
+
+
+If you are using Sentry in your mobile app, read our [frequently asked questions about mobile data privacy](/security-legal-pii/security/mobile-privacy/) to assist with Apple App Store and Google Play app privacy details.
+
+
+
+
+
+This options is available since SDK version `0.13.0`
+
+
+
+This option is turned off by default.
+
+If you enable this option, be sure to manually remove what you don't want to send using our features for managing [_Sensitive Data_](../../data-management/sensitive-data/).
+
+
+
Turns debug mode on or off. If debug is enabled SDK will attempt to print out useful debugging information if something goes wrong with sending the event. The default is always `false`. It's generally not recommended to turn it on in production, though turning `debug` mode on will not cause any safety concerns.
diff --git a/docs/platforms/kotlin/guides/kotlin-multiplatform/data-management/data-collected.mdx b/docs/platforms/kotlin/guides/kotlin-multiplatform/data-management/data-collected.mdx
new file mode 100644
index 00000000000000..d6c807f661ecbd
--- /dev/null
+++ b/docs/platforms/kotlin/guides/kotlin-multiplatform/data-management/data-collected.mdx
@@ -0,0 +1,22 @@
+---
+title: Data Collected
+description: "See what data is collected by the Sentry SDK."
+sidebar_order: 1
+---
+
+Sentry takes data privacy very seriously and has default settings in place that prioritize data safety, especially when it comes to personally identifiable information (PII) data. When you add the Sentry SDK to your application, you allow it to collect data and send it to Sentry during the runtime of your application.
+
+The category types and amount of data collected vary, depending on the integrations you've enabled in the Sentry SDK. By default the Kotlin Multiplatform SDK will collect data as specified by the used native SDKs.
+
+Many of the categories listed require you to set `sendDefaultPii: true` in your `Sentry.init` config.
+
+
+
+The `sendDefaultPii` option is available since KMP SDK version `0.13.0`.
+
+
+
+Read the documentation of the native SDKs for more details.
+- [Apple](/platforms/apple/data-management/data-collected/)
+- [Android](/platforms/android/data-management/data-collected/)
+- [Java](/platforms/java/data-management/data-collected/)